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

Unified Diff: tests/exception_test/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: Created 7 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
Index: tests/exception_test/nacl.scons
diff --git a/tests/exception_test/nacl.scons b/tests/exception_test/nacl.scons
index 649e92ba1293b2d4250c6f68c6664007f0a7fded..aee54163e314b61db344f8a58b8786f57c44faab 100644
--- a/tests/exception_test/nacl.scons
+++ b/tests/exception_test/nacl.scons
@@ -41,9 +41,10 @@ for subtest in ('test_bad_handler',
node = env.CommandSelLdrTestNacl(
'exception_%s.out' % subtest,
exception_crash_test, [subtest], **test_args)
- # test_bad_handler hangs in ARM QEMU.
+ # test_bad_handler hangs in ARM and MIPS QEMU.
subtest_is_broken = (subtest == 'test_bad_handler' and
- env.Bit('target_arm') and env.UsingEmulator())
+ (env.Bit('target_arm') or env.Bit('target_mips32'))
+ and env.UsingEmulator())
env.AddNodeToTestSuite(
node, ['small_tests', 'exception_tests'],
'run_exception_%s' % subtest,

Powered by Google App Engine
This is Rietveld 408576698