Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 Import('env') | 6 Import('env') |
| 7 | 7 |
| 8 | 8 |
| 9 mandel_tiled_nexe_name = env.ProgramNameForNmf('mandel_tiled') | 9 mandel_tiled_nexe_name = env.ProgramNameForNmf('mandel_tiled') |
| 10 mandel_tiled_nexe = env.ComponentProgram(mandel_tiled_nexe_name, | 10 mandel_tiled_nexe = env.ComponentProgram(mandel_tiled_nexe_name, |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 32 'imc_syscalls', | 32 'imc_syscalls', |
| 33 '${PTHREAD_LIBS}', | 33 '${PTHREAD_LIBS}', |
| 34 '${NONIRT_LIBS}']) | 34 '${NONIRT_LIBS}']) |
| 35 | 35 |
| 36 env.Publish(mandel_nexe_name, 'run', []) | 36 env.Publish(mandel_nexe_name, 'run', []) |
| 37 | 37 |
| 38 node = env.SelUniversalTest('mandel_test.out', | 38 node = env.SelUniversalTest('mandel_test.out', |
| 39 mandel_nexe, | 39 mandel_nexe, |
| 40 stdin=env.File('test.stdin'), | 40 stdin=env.File('test.stdin'), |
| 41 stdout_golden=env.File('test.stdout')) | 41 stdout_golden=env.File('test.stdout')) |
| 42 | |
| 43 # 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.
| |
| 44 | |
| 42 env.AddNodeToTestSuite(node, | 45 env.AddNodeToTestSuite(node, |
| 43 ['small_tests', 'sel_ldr_tests'], | 46 ['small_tests', 'sel_ldr_tests'], |
| 44 'run_mandel_test') | 47 'run_mandel_test', |
| 48 is_broken=env.Bit('target_mips32') and | |
| 49 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.
| |
| OLD | NEW |