Index: tests/fib/nacl.scons |
diff --git a/tests/fib/nacl.scons b/tests/fib/nacl.scons |
index 13e82c2aa44248a04d9b84363a54e36d335c6874..10a611283c5b2df79078adbcf682a8f6eaf347a6 100644 |
--- a/tests/fib/nacl.scons |
+++ b/tests/fib/nacl.scons |
@@ -5,6 +5,9 @@ |
Import('env') |
+# TODO(petarj): The tests hang indefinite on QEMU. Enable it when fixed. |
+is_broken=(env.Bit('build_mips32') and env.UsingEmulator()) |
Mark Seaborn
2013/02/13 22:14:09
Style is
foo = bar
rather than
foo=(bar)
petarj
2013/03/05 17:50:04
Done.
|
+ |
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) |