run objc tests exclusively

pull/12142/head
Jan Tattermusch 7 years ago
parent 9359e50045
commit 0557f6cd41
  1. 8
      tools/run_tests/run_tests.py

@ -888,40 +888,48 @@ class ObjCLanguage(object):
self.config.job_spec(['src/objective-c/tests/run_tests.sh'], self.config.job_spec(['src/objective-c/tests/run_tests.sh'],
timeout_seconds=60*60, timeout_seconds=60*60,
shortname='objc-tests', shortname='objc-tests',
cpu_cost=1e6,
environ=_FORCE_ENVIRON_FOR_WRAPPERS), environ=_FORCE_ENVIRON_FOR_WRAPPERS),
self.config.job_spec(['src/objective-c/tests/run_plugin_tests.sh'], self.config.job_spec(['src/objective-c/tests/run_plugin_tests.sh'],
timeout_seconds=60*60, timeout_seconds=60*60,
shortname='objc-plugin-tests', shortname='objc-plugin-tests',
cpu_cost=1e6,
environ=_FORCE_ENVIRON_FOR_WRAPPERS), environ=_FORCE_ENVIRON_FOR_WRAPPERS),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'], self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60, timeout_seconds=10*60,
shortname='objc-build-example-helloworld', shortname='objc-build-example-helloworld',
cpu_cost=1e6,
environ={'SCHEME': 'HelloWorld', environ={'SCHEME': 'HelloWorld',
'EXAMPLE_PATH': 'examples/objective-c/helloworld'}), 'EXAMPLE_PATH': 'examples/objective-c/helloworld'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'], self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60, timeout_seconds=10*60,
shortname='objc-build-example-routeguide', shortname='objc-build-example-routeguide',
cpu_cost=1e6,
environ={'SCHEME': 'RouteGuideClient', environ={'SCHEME': 'RouteGuideClient',
'EXAMPLE_PATH': 'examples/objective-c/route_guide'}), 'EXAMPLE_PATH': 'examples/objective-c/route_guide'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'], self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60, timeout_seconds=10*60,
shortname='objc-build-example-authsample', shortname='objc-build-example-authsample',
cpu_cost=1e6,
environ={'SCHEME': 'AuthSample', environ={'SCHEME': 'AuthSample',
'EXAMPLE_PATH': 'examples/objective-c/auth_sample'}), 'EXAMPLE_PATH': 'examples/objective-c/auth_sample'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'], self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60, timeout_seconds=10*60,
shortname='objc-build-example-sample', shortname='objc-build-example-sample',
cpu_cost=1e6,
environ={'SCHEME': 'Sample', environ={'SCHEME': 'Sample',
'EXAMPLE_PATH': 'src/objective-c/examples/Sample'}), 'EXAMPLE_PATH': 'src/objective-c/examples/Sample'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'], self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60, timeout_seconds=10*60,
shortname='objc-build-example-sample-frameworks', shortname='objc-build-example-sample-frameworks',
cpu_cost=1e6,
environ={'SCHEME': 'Sample', environ={'SCHEME': 'Sample',
'EXAMPLE_PATH': 'src/objective-c/examples/Sample', 'EXAMPLE_PATH': 'src/objective-c/examples/Sample',
'FRAMEWORKS': 'YES'}), 'FRAMEWORKS': 'YES'}),
self.config.job_spec(['src/objective-c/tests/build_one_example.sh'], self.config.job_spec(['src/objective-c/tests/build_one_example.sh'],
timeout_seconds=10*60, timeout_seconds=10*60,
shortname='objc-build-example-switftsample', shortname='objc-build-example-switftsample',
cpu_cost=1e6,
environ={'SCHEME': 'SwiftSample', environ={'SCHEME': 'SwiftSample',
'EXAMPLE_PATH': 'src/objective-c/examples/SwiftSample'}), 'EXAMPLE_PATH': 'src/objective-c/examples/SwiftSample'}),
] ]

Loading…
Cancel
Save