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

Unified Diff: tests/fib/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/fib/nacl.scons
diff --git a/tests/fib/nacl.scons b/tests/fib/nacl.scons
index 13e82c2aa44248a04d9b84363a54e36d335c6874..81787ecdd32d578f82d34e56f86c06635901c808 100644
--- a/tests/fib/nacl.scons
+++ b/tests/fib/nacl.scons
@@ -5,6 +5,9 @@
Import('env')
+# TODO(petarj): The tests hang indefinitely on QEMU. Enable it when fixed.
+is_broken = (env.Bit('build_mips32') and env.UsingEmulator())
+
fib_array_nexe = env.ComponentProgram(
'fib_array',
'fib_array.c',
@@ -23,7 +26,7 @@ node = env.SelUniversalTest(
)
env.AddNodeToTestSuite(node,
['small_tests', 'sel_ldr_tests'],
- 'run_fib_array_test')
+ 'run_fib_array_test', is_broken=is_broken)
@@ -45,4 +48,4 @@ node = env.SelUniversalTest(
)
env.AddNodeToTestSuite(node,
['small_tests', 'sel_ldr_tests'],
- 'run_fib_scalar_test')
+ 'run_fib_scalar_test', is_broken=is_broken)

Powered by Google App Engine
This is Rietveld 408576698