| OLD | NEW |
| 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 srpc_mf_obj = env.ComponentObject('srpc_manifest_file_test.o', | 8 srpc_mf_obj = env.ComponentObject('srpc_manifest_file_test.o', |
| 9 'srpc_manifest_file_test.c') | 9 'srpc_manifest_file_test.c') |
| 10 srpc_mf_nexe_name = env.ProgramNameForNmf('srpc_manifest_file_test') | 10 srpc_mf_nexe_name = env.ProgramNameForNmf('srpc_manifest_file_test') |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 node = env.SelUniversalTest( | 26 node = env.SelUniversalTest( |
| 27 'srpc_manifest_file_test.out', | 27 'srpc_manifest_file_test.out', |
| 28 srpc_mf_nexe, | 28 srpc_mf_nexe, |
| 29 sel_universal_flags=['--uses_reverse_service', | 29 sel_universal_flags=['--uses_reverse_service', |
| 30 '--var', 'obj_file', srpc_mf_obj, | 30 '--var', 'obj_file', srpc_mf_obj, |
| 31 '--var', 'nexe_file', srpc_mf_nexe, | 31 '--var', 'nexe_file', srpc_mf_nexe, |
| 32 '--command_file', | 32 '--command_file', |
| 33 env.File('srpc_manifest_file_test.stdin')], | 33 env.File('srpc_manifest_file_test.stdin')], |
| 34 stdout_golden=env.File('srpc_manifest_file_test.stdout'), | 34 stdout_golden=env.File('srpc_manifest_file_test.stdout'), |
| 35 # Slight misnomer: actually just enables the IRT. | 35 uses_irt=True, |
| 36 uses_ppapi=True | |
| 37 ) | 36 ) |
| 38 env.AddNodeToTestSuite(node, | 37 env.AddNodeToTestSuite(node, |
| 39 ['small_tests'], | 38 ['small_tests'], |
| 40 'run_srpc_manifest_file_test') | 39 'run_srpc_manifest_file_test') |
| 41 | 40 |
| 42 # post message version | 41 # post message version |
| 43 | 42 |
| 44 pm_mf_obj = env.ComponentObject('pm_manifest_file_test.o', | 43 pm_mf_obj = env.ComponentObject('pm_manifest_file_test.o', |
| 45 'pm_manifest_file_test.cc') | 44 'pm_manifest_file_test.cc') |
| 46 pm_mf_nexe_name = env.ProgramNameForNmf('pm_manifest_file_test') | 45 pm_mf_nexe_name = env.ProgramNameForNmf('pm_manifest_file_test') |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 url='irt_manifest_file_test.html', | 136 url='irt_manifest_file_test.html', |
| 138 nmfs=['irt_manifest_file.nmf'], | 137 nmfs=['irt_manifest_file.nmf'], |
| 139 files=env.ExtractPublishedFiles(irt_mf_nexe_name), | 138 files=env.ExtractPublishedFiles(irt_mf_nexe_name), |
| 140 args=['--debug'], | 139 args=['--debug'], |
| 141 ) | 140 ) |
| 142 env.AddNodeToTestSuite(node, | 141 env.AddNodeToTestSuite(node, |
| 143 ['chrome_browser_tests'], | 142 ['chrome_browser_tests'], |
| 144 'run_irt_manifest_file_chrome_browser_test', | 143 'run_irt_manifest_file_chrome_browser_test', |
| 145 is_broken=env.PPAPIBrowserTesterIsBroken() or | 144 is_broken=env.PPAPIBrowserTesterIsBroken() or |
| 146 env.Bit('nacl_glibc')) | 145 env.Bit('nacl_glibc')) |
| OLD | NEW |