Chromium Code Reviews| Index: buildbot/buildbot_pnacl.py |
| diff --git a/buildbot/buildbot_pnacl.py b/buildbot/buildbot_pnacl.py |
| index 9017e5b8b5ae65b5e46e0584513377f245ea8b07..1eada08ca5c02396f85f9f6e4b19defeb634cea1 100755 |
| --- a/buildbot/buildbot_pnacl.py |
| +++ b/buildbot/buildbot_pnacl.py |
| @@ -114,6 +114,11 @@ def RunSconsTests(status, context): |
| SCons(context, parallel=True, mode=irt_mode, |
| args=flags_run + ['pnacl_unsandboxed=1'] + tests) |
| + # Test MinSFI. |
| + if not context.Windows() and (arch == 'x86-32' or arch == 'x86-64'): |
| + with Step('minsfi_tests ' + arch, status, halt_on_fail=False): |
| + SCons(context, parallel=True, |
| + args=flags_run + ['bitcode=1', 'minsfi=1', 'minsfi_tests']) |
|
jvoung (off chromium)
2014/09/09 21:15:45
I don't think you need bitcode=1
The context shou
dbrazdil
2014/09/09 22:17:43
Done.
|
| def Main(): |
| context = BuildContext() |