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

Unified Diff: tests/stubout_mode/nacl.scons

Issue 12256018: [MIPS] Add remaining parts for building tests for MIPS (Closed) Base URL: http://src.chromium.org/native_client/trunk/src/native_client/
Patch Set: Minor cleanup. Created 7 years, 9 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 | « tests/stack_alignment/stack_alignment_asm_test.c ('k') | tests/stubout_mode/partly_invalid.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/stubout_mode/nacl.scons
diff --git a/tests/stubout_mode/nacl.scons b/tests/stubout_mode/nacl.scons
index dc94213b40c933bdb7415bcbc352b8b04a71cfaa..3369522945f8815069ef5ad7f1ec380985c4baf9 100644
--- a/tests/stubout_mode/nacl.scons
+++ b/tests/stubout_mode/nacl.scons
@@ -75,18 +75,26 @@ node = env.CommandSelLdrTestNacl(
env.AddNodeToTestSuite(node, test_suites, 'run_without_stubout_2_test')
# With "-s", the executable runs part way but then faults.
+
+if env.Bit('target_mips32'):
+ partly_invalid_exit_status = 'sigtrap'
+else:
+ partly_invalid_exit_status = 'untrusted_sigill'
+
node = env.CommandSelLdrTestNacl(
'partly_invalid_3.out', partly_invalid_nexe,
stdout_golden=env.File('with_stubout.stdout'),
sel_ldr_flags=['-s'],
- exit_status='untrusted_sigill')
+ exit_status=partly_invalid_exit_status)
env.AddNodeToTestSuite(node, test_suites, 'run_stubout_mode_test')
# Using the standalone ncval_stubout tool to rewrite the executable
# offline should be equivalent to using sel_ldr's "-s" option.
+# This tool exists only for x86.
node = env.CommandSelLdrTestNacl(
'partly_invalid_stubout.out',
partly_invalid_stubout_nexe,
stdout_golden=env.File('with_stubout.stdout'),
exit_status='untrusted_sigill')
-env.AddNodeToTestSuite(node, test_suites, 'run_offline_stubout_test')
+env.AddNodeToTestSuite(node, test_suites, 'run_offline_stubout_test',
+ is_broken=env.Bit('target_mips32'))
« no previous file with comments | « tests/stack_alignment/stack_alignment_asm_test.c ('k') | tests/stubout_mode/partly_invalid.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698