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

Unified Diff: tests/callingconv/nacl.scons

Issue 12667019: [MIPS] Support for building tests for MIPS (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: updates to sandboxed_mips.S. 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
Index: tests/callingconv/nacl.scons
diff --git a/tests/callingconv/nacl.scons b/tests/callingconv/nacl.scons
index d59b86aa7477aadfe1fa66ddde604b83075ff8c8..f11809fc830dcc98781450b7505270253262e36e 100644
--- a/tests/callingconv/nacl.scons
+++ b/tests/callingconv/nacl.scons
@@ -9,6 +9,11 @@ Import('env')
if env.Bit('bitcode') and env.Bit('pnacl_generate_pexe'):
Return()
+# This test is disabled for MIPS because we do not have a MIPS-enabled nacl-gcc
+# to test PNaCl against.
+if env.Bit('target_mips32'):
+ Return()
+
# If this test is failing on the bots, you can find the seed
# from the output of the bot. Look for "--seed=".
# To reproduce the exact problem, set settings['seed'] below

Powered by Google App Engine
This is Rietveld 408576698