Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: ios/build/bots/scripts/test_runner.py

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « infra/config/recipes.cfg ('k') | ios/chrome/app/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/build/bots/scripts/test_runner.py
diff --git a/ios/build/bots/scripts/test_runner.py b/ios/build/bots/scripts/test_runner.py
index 9e4818e3720435ad3b45a5ae1dd449b5de5e159f..e51e4e0855dcf59980e8f1a6f8b11eb70e06fab2 100644
--- a/ios/build/bots/scripts/test_runner.py
+++ b/ios/build/bots/scripts/test_runner.py
@@ -645,7 +645,6 @@ class DeviceTestRunner(TestRunner):
'xcodebuild',
'test-without-building',
'BUILT_PRODUCTS_DIR=%s' % os.path.dirname(self.app_path),
- 'NSUnbufferedIO=YES',
'-destination', 'id=%s' % self.udid,
'-project', XCTEST_PROJECT,
'-scheme', XCTEST_SCHEME,
@@ -682,6 +681,7 @@ class DeviceTestRunner(TestRunner):
"""
env = super(DeviceTestRunner, self).get_launch_env()
if self.xctest_path:
+ env['NSUnbufferedIO'] = 'YES'
# e.g. ios_web_shell_test_host
env['APP_TARGET_NAME'] = (
os.path.splitext(os.path.basename(self.app_path))[0])
« no previous file with comments | « infra/config/recipes.cfg ('k') | ios/chrome/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698