| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 ###################################################################### | 8 ###################################################################### |
| 9 # Smoke Test | 9 # Smoke Test |
| 10 ###################################################################### | 10 ###################################################################### |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 # sel_universal test | 23 # sel_universal test |
| 24 | 24 |
| 25 # Don't provide IRT, we provide it ourselves over SRPC | 25 # Don't provide IRT, we provide it ourselves over SRPC |
| 26 env.ClearBits('tests_use_irt') | 26 env.ClearBits('tests_use_irt') |
| 27 | 27 |
| 28 node = env.SelUniversalTest( | 28 node = env.SelUniversalTest( |
| 29 'srpc_irt_present_test.out', | 29 'srpc_irt_present_test.out', |
| 30 nexe, | 30 nexe, |
| 31 sel_universal_flags=['--irt', env.GetIrtNexe(), | 31 sel_universal_flags=['--irt', env.GetIrtNexe(), |
| 32 '--no_app_channel'], | 32 '--no_app_channel', |
| 33 '--untrusted'], |
| 33 ) | 34 ) |
| 34 | 35 |
| 35 env.AddNodeToTestSuite(node, ['small_tests'], 'run_srpc_irt_present_test') | 36 env.AddNodeToTestSuite(node, ['small_tests'], 'run_srpc_irt_present_test') |
| OLD | NEW |