mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
sigh add print ls
This commit is contained in:
parent
80bef2a3ce
commit
af57be135f
@ -1719,7 +1719,7 @@ class CompileTest {
|
||||
'archive',
|
||||
'DEVELOPMENT_TEAM=$developmentTeam',
|
||||
'CODE_SIGN_STYLE=$codeSignStyle',
|
||||
'PROVISIONING_PROFILE_SPECIFIER=$provisioningProfile',
|
||||
// 'PROVISIONING_PROFILE_SPECIFIER=$provisioningProfile',
|
||||
]).then((ProcessResult results) {
|
||||
watch.stop();
|
||||
print(results.stdout);
|
||||
@ -1753,14 +1753,14 @@ class CompileTest {
|
||||
'hello_world_swiftui',
|
||||
'-destination',
|
||||
// 'platform=iOS,name=Fluttér 的 iPhone',
|
||||
'platform=iOS,arch=arm64',
|
||||
'platform=iOS,name=Fluttér 的 iPhone',
|
||||
'-only-testing:BenchmarkTests/BenchmarkTests/testTimeToFirstFrame',
|
||||
'-resultBundlePath',
|
||||
'benchmarkResults.xcresult',
|
||||
'-verbose',
|
||||
'DEVELOPMENT_TEAM=$developmentTeam',
|
||||
'CODE_SIGN_STYLE=$codeSignStyle',
|
||||
'PROVISIONING_PROFILE_SPECIFIER=$provisioningProfile',
|
||||
// 'PROVISIONING_PROFILE_SPECIFIER=$provisioningProfile',
|
||||
]).then((ProcessResult results) {
|
||||
print(results.stdout);
|
||||
});
|
||||
@ -1777,6 +1777,10 @@ class CompileTest {
|
||||
'--format',
|
||||
'json'
|
||||
]).then((ProcessResult results) {
|
||||
Directory dir = Directory(testDirectory);
|
||||
dir.list(recursive: false).forEach((f) {
|
||||
print(f);
|
||||
});
|
||||
print(results.stdout);
|
||||
metricsJson = json.decode(results.stdout.toString());
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user