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

Side by Side Diff: tests/manifest_file/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: Update per codereview. Created 7 years, 9 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 srpc_mf_obj = env.ComponentObject('srpc_manifest_file_test.o', 8 srpc_mf_obj = env.ComponentObject('srpc_manifest_file_test.o',
9 'srpc_manifest_file_test.c') 9 'srpc_manifest_file_test.c')
10 srpc_mf_nexe_name = env.ProgramNameForNmf('srpc_manifest_file_test') 10 srpc_mf_nexe_name = env.ProgramNameForNmf('srpc_manifest_file_test')
(...skipping 15 matching lines...) Expand all
26 node = env.SelUniversalTest( 26 node = env.SelUniversalTest(
27 'srpc_manifest_file_test.out', 27 'srpc_manifest_file_test.out',
28 srpc_mf_nexe, 28 srpc_mf_nexe,
29 sel_universal_flags=['--uses_reverse_service', 29 sel_universal_flags=['--uses_reverse_service',
30 '--var', 'obj_file', srpc_mf_obj, 30 '--var', 'obj_file', srpc_mf_obj,
31 '--var', 'nexe_file', srpc_mf_nexe, 31 '--var', 'nexe_file', srpc_mf_nexe,
32 '--command_file', 32 '--command_file',
33 env.File('srpc_manifest_file_test.stdin')], 33 env.File('srpc_manifest_file_test.stdin')],
34 stdout_golden=env.File('srpc_manifest_file_test.stdout'), 34 stdout_golden=env.File('srpc_manifest_file_test.stdout'),
35 ) 35 )
36
37 # TODO(petarj): The test hangs indefinitely on QEMU. Enable the test when fixed.
38
36 env.AddNodeToTestSuite(node, 39 env.AddNodeToTestSuite(node,
37 ['small_tests'], 40 ['small_tests'],
38 'run_srpc_manifest_file_test') 41 'run_srpc_manifest_file_test',
42 is_broken=env.Bit('build_mips32')
43 and env.UsingEmulator())
Mark Seaborn 2013/03/11 15:54:38 Please indent as: is_broken=(foo and ba
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698