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

Unified Diff: tests/mandel/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: 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/mandel/nacl.scons
diff --git a/tests/mandel/nacl.scons b/tests/mandel/nacl.scons
index 29f1ff1b0ffa054cccd1497eaef38e8c78e13ca5..477d8a389165719ebeed8e1d1039f87c886f7dcc 100644
--- a/tests/mandel/nacl.scons
+++ b/tests/mandel/nacl.scons
@@ -39,6 +39,11 @@ node = env.SelUniversalTest('mandel_test.out',
mandel_nexe,
stdin=env.File('test.stdin'),
stdout_golden=env.File('test.stdout'))
+
+# TODO(petarj): The test hangs indefinite on QEMU MIPS. Enable it when fixed.
Mark Seaborn 2013/02/13 22:14:09 'indefinitely'
petarj 2013/03/05 17:50:04 Done.
+
env.AddNodeToTestSuite(node,
['small_tests', 'sel_ldr_tests'],
- 'run_mandel_test')
+ 'run_mandel_test',
+ is_broken=env.Bit('target_mips32') and
+ env.UsingEmulator())
Mark Seaborn 2013/02/13 22:14:09 Nit: indent as is_broken=(x and y) Sam
petarj 2013/03/05 17:50:04 Done.

Powered by Google App Engine
This is Rietveld 408576698