aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-09 19:31:52 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-10 10:38:06 +0200
commit0557f6cd4115419c95a96527f7eff96b2a81c510 (patch)
treed6ec8bc230a352b63bdc4b3f35930ab2f0ce202a /tools/run_tests/run_tests.py
parent9359e5004552fa14513f45a49275b55d33522548 (diff)
run objc tests exclusively
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-xtools/run_tests/run_tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index fd05d9740e..a695a62827 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -888,40 +888,48 @@ class ObjCLanguage(object):
self.config.job_spec(['src/objective-c/tests/run_tests.sh'],
timeout_seconds=60*60,
shortname='objc-tests',
+ cpu_cost=1e6,
environ=_FORCE_ENVIRON_FOR_WRAPPERS),
self.config.job_spec(['src/objective-c/tests/run_plugin_tests.sh'],
timeout_seconds=60*60,
shortname='objc-plugin-tests',
+ cpu_cost=1e6,
environ=_FORCE_ENVIRON_FOR_WRAPPERS),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60,
shortname='objc-build-example-helloworld',
+ cpu_cost=1e6,
environ={'SCHEME': 'HelloWorld',
'EXAMPLE_PATH': 'examples/objective-c/helloworld'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60,
shortname='objc-build-example-routeguide',
+ cpu_cost=1e6,
environ={'SCHEME': 'RouteGuideClient',
'EXAMPLE_PATH': 'examples/objective-c/route_guide'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60,
shortname='objc-build-example-authsample',
+ cpu_cost=1e6,
environ={'SCHEME': 'AuthSample',
'EXAMPLE_PATH': 'examples/objective-c/auth_sample'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60,
shortname='objc-build-example-sample',
+ cpu_cost=1e6,
environ={'SCHEME': 'Sample',
'EXAMPLE_PATH': 'src/objective-c/examples/Sample'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60,
shortname='objc-build-example-sample-frameworks',
+ cpu_cost=1e6,
environ={'SCHEME': 'Sample',
'EXAMPLE_PATH': 'src/objective-c/examples/Sample',
'FRAMEWORKS': 'YES'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60,
shortname='objc-build-example-switftsample',
+ cpu_cost=1e6,
environ={'SCHEME': 'SwiftSample',
'EXAMPLE_PATH': 'src/objective-c/examples/SwiftSample'}),
]