| Index: buildbot/buildbot_pnacl.py
|
| diff --git a/buildbot/buildbot_pnacl.py b/buildbot/buildbot_pnacl.py
|
| index 9017e5b8b5ae65b5e46e0584513377f245ea8b07..756d312447e73904168a2554f735e122704268ae 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 + ['minsfi=1', 'minsfi_tests'])
|
|
|
| def Main():
|
| context = BuildContext()
|
|
|