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

Unified Diff: SConstruct

Issue 9316125: Adding untrusted crash dump / stack trace tests. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: taking out of irt tests Created 8 years, 10 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 | « no previous file | site_scons/site_tools/naclsdk.py » ('j') | src/trusted/service_runtime/sel_main.c » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
diff --git a/SConstruct b/SConstruct
index 8199beb07d7f134541078427f5d73c1a6a56bf53..4234499e0eba370fed8450c2a28674fbabdc9205 100755
--- a/SConstruct
+++ b/SConstruct
@@ -1605,14 +1605,15 @@ def PPAPIBrowserTester(env,
continue
stream_file = env.subst(params['file'])
command.extend(['--nacl_exe_' + stream, stream_file])
- golden_file = env.subst(params['golden'])
- filter_regex = params.get('filter_regex', None)
- filter_inverse = params.get('filter_inverse', False)
- filter_group_only = params.get('filter_group_only', False)
- post_actions.append(
- GoldenFileCheckAction(
- env, stream_file, golden_file,
- filter_regex, filter_inverse, filter_group_only))
+ if 'golden' in params:
+ golden_file = env.subst(params['golden'])
+ filter_regex = params.get('filter_regex', None)
+ filter_inverse = params.get('filter_inverse', False)
+ filter_group_only = params.get('filter_group_only', False)
+ post_actions.append(
+ GoldenFileCheckAction(
+ env, stream_file, golden_file,
+ filter_regex, filter_inverse, filter_group_only))
if ShouldUseVerboseOptions(extra):
env.MakeVerboseExtraOptions(target, log_verbosity, extra)
@@ -3282,6 +3283,7 @@ nonvariant_tests = [
'tests/ppapi_tests/nacl.scons',
'tests/pyauto_nacl/nacl.scons',
'tests/unittests/shared/imc/nacl.scons',
+ 'tests/untrusted_crash_dump/nacl.scons',
Mark Seaborn 2012/02/13 19:04:08 I noticed your change "taking out of irt tests".
bradn 2012/02/13 23:42:03 Had some trouble or other with the build, left in
'tests/unittests/shared/srpc/nacl.scons',
'tests/windows_crash_in_syscall/nacl.scons',
#### ALPHABETICALLY SORTED ####
« no previous file with comments | « no previous file | site_scons/site_tools/naclsdk.py » ('j') | src/trusted/service_runtime/sel_main.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698