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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/sel_ldr/nacl.scons
diff --git a/tests/sel_ldr/nacl.scons b/tests/sel_ldr/nacl.scons
new file mode 100644
index 0000000000000000000000000000000000000000..96be59ff68b4c419a3e5c97697f816f9b2718d78
--- /dev/null
+++ b/tests/sel_ldr/nacl.scons
@@ -0,0 +1,33 @@
+# -*- python -*-
+# Copyright (c) 2012 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+Import('env')
+
+non_exit_nexe = env.ComponentProgram('non_exit', 'non_exit.c',
+ EXTRA_LIBS=['${NONIRT_LIBS}'])
+
+node = env.SelUniversalTest(
+ 'hard_shutdown_test.out',
+ non_exit_nexe,
+ sel_universal_flags=['--uses_reverse_service',
+ '--no_app_channel',
+ '--command_file',
+ env.File('hard_shutdown_test.stdin')],
+ )
+env.AddNodeToTestSuite(node,
+ ['small_tests'],
+ 'run_hard_shutdown_test')
+
+node = env.SelUniversalTest(
+ 'force_shutdown_test.out',
+ non_exit_nexe,
+ sel_universal_flags=['--uses_reverse_service',
+ '--no_app_channel',
+ '--command_file',
+ env.File('hard_shutdown_test.stdin')],
+ )
+env.AddNodeToTestSuite(node,
+ ['small_tests'],
+ 'run_force_shutdown_test')
« 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