diff options
author | noelallen@chromium.org <noelallen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 18:41:40 +0000 |
---|---|---|
committer | noelallen@chromium.org <noelallen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 18:41:40 +0000 |
commit | 7539b931e87681b23c732fd98c126820ecb6be52 (patch) | |
tree | f8e4c1e352541386d5c76f8d003c1a552da49705 /native_client_sdk/src/build_tools/buildbot_run.py | |
parent | 25950ad2ce22f4088677bdda93d54bd63e0a758f (diff) | |
download | chromium_src-7539b931e87681b23c732fd98c126820ecb6be52.zip chromium_src-7539b931e87681b23c732fd98c126820ecb6be52.tar.gz chromium_src-7539b931e87681b23c732fd98c126820ecb6be52.tar.bz2 |
Currently, bionic only build a subset of the examples. This changes turns on all the examples and tests compiling those examples.
BUG=344574
R=sbc@chromium.org, binji@chromium.org
Review URL: https://codereview.chromium.org/339393005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk/src/build_tools/buildbot_run.py')
-rwxr-xr-x | native_client_sdk/src/build_tools/buildbot_run.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/native_client_sdk/src/build_tools/buildbot_run.py b/native_client_sdk/src/build_tools/buildbot_run.py index c24c6df..374155d 100755 --- a/native_client_sdk/src/build_tools/buildbot_run.py +++ b/native_client_sdk/src/build_tools/buildbot_run.py @@ -87,6 +87,11 @@ def StepTestSDK(): ]) cmd.extend([sys.executable, 'test_sdk.py']) + + # TODO(noelallen): crbug 386332 + # For Bionic SDK, only build do a build test until we have hardware. + if 'bionic' in os.getenv('BUILDBOT_BUILDERNAME', ''): + cmd.extend(['build_examples', 'copy_tests', 'build_tests']) Run(cmd, cwd=SCRIPT_DIR) @@ -112,9 +117,6 @@ def main(args): # to pass --build-only argument. if os.getenv('BUILDBOT_BUILDERNAME', '').endswith('build'): options.build_only = True - # TODO(noelallen): Enable testing on bionic when we have an ARM solution. - if 'bionic' in os.getenv('BUILDBOT_BUILDERNAME', ''): - options.build_only = True StepArmRunHooks() StepRunUnittests() |