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

Unified Diff: tests/callingconv_case_by_case/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: Update per codereview. 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/callingconv_case_by_case/nacl.scons
diff --git a/tests/callingconv_case_by_case/nacl.scons b/tests/callingconv_case_by_case/nacl.scons
index e8b11b00bf192a97ac98fa0579badc5d3e5d76d5..64d91c03c5d99efa178cb2e69a93ab2bbbce53e7 100644
--- a/tests/callingconv_case_by_case/nacl.scons
+++ b/tests/callingconv_case_by_case/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()
+
# Case-by-case calling Convention Test for PNaCl and nacl-gcc compatibility.
# We make 4 modules.

Powered by Google App Engine
This is Rietveld 408576698