| 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)
|
|
|