Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1978)

Unified Diff: buildbot/buildbot_pnacl.py

Issue 539683002: MinSFI: Add loader (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixed nits Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « SConstruct ('k') | buildbot/buildbot_pnacl.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « SConstruct ('k') | buildbot/buildbot_pnacl.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698