diff options
author | Stephan Altmueller <stephana@google.com> | 2017-05-11 10:18:59 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-05-11 16:30:31 +0000 |
commit | 7b1cc7625be39fdf7d9642373b16f1aa5a37bf94 (patch) | |
tree | b3fa6405213eafbc97937cad51856eeb1f250ffc | |
parent | a8b5cf3550fd3d843f075cae6b82cd342e32981b (diff) |
Enable debug output on iOS
Enables debug output on iOS. Everything will work the
same except there will be more output for dm and nanobench.
This should help us flush out remaining flakiness and
will be removed once it's not necessary anymore.
Bug: skia:
Change-Id: Idfdc7cf829e93b905fdb0ac2bbab1e78250b7ae0
Reviewed-on: https://skia-review.googlesource.com/16491
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Stephan Altmueller <stephana@google.com>
4 files changed, 4 insertions, 1 deletions
diff --git a/infra/bots/recipe_modules/flavor/example.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm64-Debug.json b/infra/bots/recipe_modules/flavor/example.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm64-Debug.json index 3c7b431b50..2ae915b8a7 100644 --- a/infra/bots/recipe_modules/flavor/example.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm64-Debug.json +++ b/infra/bots/recipe_modules/flavor/example.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm64-Debug.json @@ -546,6 +546,7 @@ { "cmd": [ "idevice-app-runner", + "-d", "-s", "com.google.dm", "--args", diff --git a/infra/bots/recipe_modules/flavor/ios_flavor.py b/infra/bots/recipe_modules/flavor/ios_flavor.py index cc6143ac41..e951b75c57 100644 --- a/infra/bots/recipe_modules/flavor/ios_flavor.py +++ b/infra/bots/recipe_modules/flavor/ios_flavor.py @@ -47,7 +47,7 @@ class iOSFlavorUtils(gn_flavor.GNFlavorUtils): def step(self, name, cmd, env=None, **kwargs): bundle_id = 'com.google.%s' % cmd[0] self.m.run(self.m.step, name, - cmd=['idevice-app-runner', '-s', bundle_id, '--args'] + + cmd=['idevice-app-runner', '-d', '-s', bundle_id, '--args'] + map(str, cmd[1:])) def _run_ios_script(self, script, first, *rest): diff --git a/infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json b/infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json index deb62a1bdb..a3055413f8 100644 --- a/infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json +++ b/infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json @@ -523,6 +523,7 @@ { "cmd": [ "idevice-app-runner", + "-d", "-s", "com.google.nanobench", "--args", diff --git a/infra/bots/recipes/test.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json b/infra/bots/recipes/test.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json index 5b760fd986..19ffd6ea90 100644 --- a/infra/bots/recipes/test.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json +++ b/infra/bots/recipes/test.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json @@ -661,6 +661,7 @@ { "cmd": [ "idevice-app-runner", + "-d", "-s", "com.google.dm", "--args", |