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

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: Tests invoked from buildbots 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
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()
« no previous file with comments | « SConstruct ('k') | buildbot/buildbot_pnacl.sh » ('j') | buildbot/buildbot_pnacl.sh » ('J')

Powered by Google App Engine
This is Rietveld 408576698