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

Side by Side Diff: tests/nameservice/nacl.scons

Issue 10834447: Scons: Drop the uses_ppapi argument from CommandSelLdrTestNacl() (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: initial Created 8 years, 3 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 | Annotate | Revision Log
« src/untrusted/irt/nacl.scons ('K') | « tests/manifest_file/nacl.scons ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 27 matching lines...) Expand all
38 38
39 # sel_universal test 39 # sel_universal test
40 40
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 # Slight misnomer: actually just enables the IRT. 48 uses_irt=True
49 uses_ppapi=True
50 ) 49 )
51 env.AddNodeToTestSuite(node, 50 env.AddNodeToTestSuite(node,
52 ['small_tests'], 51 ['small_tests'],
53 'run_srpc_nameservice_test') 52 'run_srpc_nameservice_test')
54 53
55 # postmessage version of srpc_nameservice_test 54 # postmessage version of srpc_nameservice_test
56 55
57 pm_ns_obj = env.ComponentObject('pm_nameservice_test.o', 56 pm_ns_obj = env.ComponentObject('pm_nameservice_test.o',
58 'pm_nameservice_test.cc') 57 'pm_nameservice_test.cc')
59 pm_ns_nexe_name = env.ProgramNameForNmf('pm_nameservice_test') 58 pm_ns_nexe_name = env.ProgramNameForNmf('pm_nameservice_test')
(...skipping 20 matching lines...) Expand all
80 nmf_names=['pm_nameservice_test'], 79 nmf_names=['pm_nameservice_test'],
81 files=env.ExtractPublishedFiles(pm_ns_nexe_name), 80 files=env.ExtractPublishedFiles(pm_ns_nexe_name),
82 args=['--debug'], 81 args=['--debug'],
83 osenv=['NACLVERBOSITY=0:pp_weak_ref=0:weak_ref=0'] 82 osenv=['NACLVERBOSITY=0:pp_weak_ref=0:weak_ref=0']
84 ) 83 )
85 84
86 env.AddNodeToTestSuite(node, 85 env.AddNodeToTestSuite(node,
87 ['chrome_browser_tests'], 86 ['chrome_browser_tests'],
88 'run_pm_nameservice_chrome_browser_test', 87 'run_pm_nameservice_chrome_browser_test',
89 is_broken=env.PPAPIBrowserTesterIsBroken()) 88 is_broken=env.PPAPIBrowserTesterIsBroken())
OLDNEW
« src/untrusted/irt/nacl.scons ('K') | « tests/manifest_file/nacl.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698