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

Side by Side Diff: tests/nameservice/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 nameservice_test_nexe = env.ComponentProgram( 8 nameservice_test_nexe = env.ComponentProgram(
9 'nameservice_test', 9 'nameservice_test',
10 'nameservice_test.c', 10 'nameservice_test.c',
(...skipping 30 matching lines...) Expand all
41 node = env.SelUniversalTest( 41 node = env.SelUniversalTest(
42 'srpc_nameservice_test.out', 42 'srpc_nameservice_test.out',
43 srpc_ns_nexe, 43 srpc_ns_nexe,
44 sel_universal_flags=['--uses_reverse_service', 44 sel_universal_flags=['--uses_reverse_service',
45 '--command_file', 45 '--command_file',
46 env.File('srpc_nameservice_test.stdin')], 46 env.File('srpc_nameservice_test.stdin')],
47 stdout_golden=env.File('srpc_nameservice_test.stdout'), 47 stdout_golden=env.File('srpc_nameservice_test.stdout'),
48 ) 48 )
49 env.AddNodeToTestSuite(node, 49 env.AddNodeToTestSuite(node,
50 ['small_tests'], 50 ['small_tests'],
51 'run_srpc_nameservice_test') 51 'run_srpc_nameservice_test',
52 is_broken=env.Bit('target_mips32') and
Mark Seaborn 2013/03/11 15:54:38 In other files you added a TODO to comment this --
53 env.UsingEmulator())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698