Remove debug flag for ios bots
authorStephan Altmueller <stephana@google.com>
Fri, 19 May 2017 20:29:05 +0000 (16:29 -0400)
committerSkia Commit-Bot <skia-commit-bot@chromium.org>
Fri, 19 May 2017 20:56:47 +0000 (20:56 +0000)
TBR=borenet
Bug: skia:
Change-Id: I791ad92203ca8cdd6da8abe7c9f45fde528cb7b9
Reviewed-on: https://skia-review.googlesource.com/17409
Reviewed-by: Stephan Altmueller <stephana@google.com>
Commit-Queue: Stephan Altmueller <stephana@google.com>

infra/bots/recipe_modules/flavor/example.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm64-Debug.json
infra/bots/recipe_modules/flavor/ios_flavor.py
infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json
infra/bots/recipes/test.expected/Test-iOS-Clang-iPadMini4-GPU-GX6450-arm-Release.json

index e951b75..cc6143a 100644 (file)
@@ -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', '-d', '-s', bundle_id, '--args'] +
+               cmd=['idevice-app-runner', '-s', bundle_id, '--args'] +
                     map(str, cmd[1:]))
 
   def _run_ios_script(self, script, first, *rest):