Chromium Code Reviews| Index: tests/manifest_file/nacl.scons |
| diff --git a/tests/manifest_file/nacl.scons b/tests/manifest_file/nacl.scons |
| index fab70433a7b4f93a4f4a9b1b5f91937d397f551d..af83aad2ef4b49045cc264f6bd1ad90e1b1ba50d 100644 |
| --- a/tests/manifest_file/nacl.scons |
| +++ b/tests/manifest_file/nacl.scons |
| @@ -33,6 +33,11 @@ node = env.SelUniversalTest( |
| env.File('srpc_manifest_file_test.stdin')], |
| stdout_golden=env.File('srpc_manifest_file_test.stdout'), |
| ) |
| + |
| +# TODO(petarj): The test hangs indefinitely on QEMU. Enable the test when fixed. |
| + |
| env.AddNodeToTestSuite(node, |
| ['small_tests'], |
| - 'run_srpc_manifest_file_test') |
| + 'run_srpc_manifest_file_test', |
| + is_broken=env.Bit('build_mips32') |
| + and env.UsingEmulator()) |
|
Mark Seaborn
2013/03/11 15:54:38
Please indent as:
is_broken=(foo
and ba
|