|
|
|
@ -1095,27 +1095,35 @@ class ObjCLanguage(object): |
|
|
|
|
timeout_seconds=60 * 60, |
|
|
|
|
shortname='ios-test-unittests', |
|
|
|
|
cpu_cost=1e6, |
|
|
|
|
environ={SCHEME: 'UnitTests'}) |
|
|
|
|
environ={ |
|
|
|
|
SCHEME: 'UnitTests' |
|
|
|
|
}) |
|
|
|
|
out += self.config.job_spec( |
|
|
|
|
['src/objective-c/tests/run_one_test.sh'], |
|
|
|
|
timeout_seconds=60 * 60, |
|
|
|
|
shortname='ios-test-interoptests', |
|
|
|
|
cpu_cost=1e6, |
|
|
|
|
environ={SCHEME: 'InteropTests'}) |
|
|
|
|
environ={ |
|
|
|
|
SCHEME: 'InteropTests' |
|
|
|
|
}) |
|
|
|
|
out += self.config.job_spec( |
|
|
|
|
['src/objective-c/tests/run_one_test.sh'], |
|
|
|
|
timeout_seconds=60 * 60, |
|
|
|
|
shortname='ios-test-cronettests', |
|
|
|
|
cpu_cost=1e6, |
|
|
|
|
environ={SCHEME: 'CronetTests'}) |
|
|
|
|
environ={ |
|
|
|
|
SCHEME: 'CronetTests' |
|
|
|
|
}) |
|
|
|
|
out += self.config.job_spec( |
|
|
|
|
['src/objective-c/tests/run_one_test.sh'], |
|
|
|
|
timeout_seconds=60 * 60, |
|
|
|
|
shortname='mac-test-basictests', |
|
|
|
|
cpu_cost=1e6, |
|
|
|
|
environ={SCHEME: 'MacTests'}) |
|
|
|
|
environ={ |
|
|
|
|
SCHEME: 'MacTests' |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
return sorted(out); |
|
|
|
|
return sorted(out) |
|
|
|
|
|
|
|
|
|
def pre_build_steps(self): |
|
|
|
|
return [] |
|
|
|
|