OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import json | 6 import json |
7 import os | 7 import os |
8 import subprocess | 8 import subprocess |
9 import sys | 9 import sys |
10 import tempfile | 10 import tempfile |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
263 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-32', | 263 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-32', |
264 'nacl-toolchain-linux-pnacl-x86_64': | 264 'nacl-toolchain-linux-pnacl-x86_64': |
265 python + | 265 python + |
266 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-64', | 266 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-64', |
267 'nacl-toolchain-linux-pnacl-mips': echo + ' "TODO(mseaborn)"', | 267 'nacl-toolchain-linux-pnacl-mips': echo + ' "TODO(mseaborn)"', |
268 'nacl-toolchain-mac-pnacl-x86_32': | 268 'nacl-toolchain-mac-pnacl-x86_32': |
269 python + ' buildbot/buildbot_pnacl_toolchain.py --trybot', | 269 python + ' buildbot/buildbot_pnacl_toolchain.py --trybot', |
270 'nacl-toolchain-win7-pnacl-x86_64': | 270 'nacl-toolchain-win7-pnacl-x86_64': |
271 python + ' buildbot/buildbot_pnacl_toolchain.py --trybot', | 271 python + ' buildbot/buildbot_pnacl_toolchain.py --trybot', |
272 | 272 |
273 # Sanitizer Pnacl toolchain buildbot. | |
Karl
2015/05/12 20:23:29
Nit:
Shouldn't this be earlier in the list where
| |
274 'asan': | |
275 python + | |
276 ' buildbot/buildbot_pnacl_toolchain.py --buildbot --tests-arch x86-64 ' | |
277 ' --sanitize address --skip-tests', | |
278 | |
273 # Sanitizer Pnacl toolchain trybots. | 279 # Sanitizer Pnacl toolchain trybots. |
274 'nacl-toolchain-asan': | 280 'nacl-toolchain-asan': |
275 python + | 281 python + |
276 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-64 ' | 282 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-64 ' |
277 ' --sanitize address --skip-tests', | 283 ' --sanitize address --skip-tests', |
278 # TODO(kschimpf): Bot is currently broken: --sanitize memory not understood. | 284 # TODO(kschimpf): Bot is currently broken: --sanitize memory not understood. |
279 'nacl-toolchain-msan': | 285 'nacl-toolchain-msan': |
280 python + | 286 python + |
281 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-64 ' | 287 ' buildbot/buildbot_pnacl_toolchain.py --trybot --tests-arch x86-64 ' |
282 ' --sanitize memory --skip-tests', | 288 ' --sanitize memory --skip-tests', |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
479 ]) | 485 ]) |
480 | 486 |
481 print "%s runs: %s\n" % (builder, cmd) | 487 print "%s runs: %s\n" % (builder, cmd) |
482 sys.stdout.flush() | 488 sys.stdout.flush() |
483 retcode = subprocess.call(cmd, env=env, shell=True) | 489 retcode = subprocess.call(cmd, env=env, shell=True) |
484 sys.exit(retcode) | 490 sys.exit(retcode) |
485 | 491 |
486 | 492 |
487 if __name__ == '__main__': | 493 if __name__ == '__main__': |
488 Main() | 494 Main() |
OLD | NEW |