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

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

Issue 10979061: Track correctly the number of secure command channel connections (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebased with master. Created 8 years, 2 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
« no previous file with comments | « tests/sel_ldr/hard_shutdown_test.stdin ('k') | tests/sel_ldr/non_exit.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # -*- python -*-
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
4 # found in the LICENSE file.
5
6 Import('env')
7
8 non_exit_nexe = env.ComponentProgram('non_exit', 'non_exit.c',
9 EXTRA_LIBS=['${NONIRT_LIBS}'])
10
11 node = env.SelUniversalTest(
12 'hard_shutdown_test.out',
13 non_exit_nexe,
14 sel_universal_flags=['--uses_reverse_service',
15 '--no_app_channel',
16 '--command_file',
17 env.File('hard_shutdown_test.stdin')],
18 )
19 env.AddNodeToTestSuite(node,
20 ['small_tests'],
21 'run_hard_shutdown_test')
22
23 node = env.SelUniversalTest(
24 'force_shutdown_test.out',
25 non_exit_nexe,
26 sel_universal_flags=['--uses_reverse_service',
27 '--no_app_channel',
28 '--command_file',
29 env.File('hard_shutdown_test.stdin')],
30 )
31 env.AddNodeToTestSuite(node,
32 ['small_tests'],
33 'run_force_shutdown_test')
OLDNEW
« no previous file with comments | « tests/sel_ldr/hard_shutdown_test.stdin ('k') | tests/sel_ldr/non_exit.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698