| OLD | NEW |
| (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') |
| OLD | NEW |