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

Side by Side 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 unified diff | Download patch
OLDNEW
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
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698