| 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 # force inclusion of entire library, so that we can validate it | 8 # force inclusion of entire library, so that we can validate it |
| 9 # NOTE: This approach does not work for -lc because of tons of | 9 # NOTE: This approach does not work for -lc because of tons of |
| 10 # undefined symbols which would have to be stubbed out | 10 # undefined symbols which would have to be stubbed out |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 return new_env | 114 return new_env |
| 115 | 115 |
| 116 ENVIRONMENTS_TO_TRY = [ ('noopt_frame', MakeEnv(False, True)), | 116 ENVIRONMENTS_TO_TRY = [ ('noopt_frame', MakeEnv(False, True)), |
| 117 ('noopt_noframe', MakeEnv(False, False)), | 117 ('noopt_noframe', MakeEnv(False, False)), |
| 118 ('opt_frame', MakeEnv(True, True)), | 118 ('opt_frame', MakeEnv(True, True)), |
| 119 ('opt_noframe', MakeEnv(True, False)), | 119 ('opt_noframe', MakeEnv(True, False)), |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 for tag, e in ENVIRONMENTS_TO_TRY: | 122 for tag, e in ENVIRONMENTS_TO_TRY: |
| 123 for src in ['unwind_trace.cc', | 123 for src in ['unwind_trace.cc', |
| 124 'stack_frame.cc', | 124 # TODO(mcgrathr): This test has bad assumptions and needs |
| 125 # to be rewritten. Disabling it for now. |
| 126 # 'stack_frame.cc', |
| 125 'eh_virtual_dtor.cc', | 127 'eh_virtual_dtor.cc', |
| 126 'eh_loop_single.cc', | 128 'eh_loop_single.cc', |
| 127 'eh_loop_many.cc', | 129 'eh_loop_many.cc', |
| 128 'eh_catch_many.cc', | 130 'eh_catch_many.cc', |
| 129 'eh_loop_break.cc']: | 131 'eh_loop_break.cc']: |
| 130 is_broken = False | 132 is_broken = False |
| 131 if src in ['unwind_trace.cc', 'stack_frame.cc']: | 133 if src in ['unwind_trace.cc', 'stack_frame.cc']: |
| 132 # the tracing gets messed up by optimizations | 134 # the tracing gets messed up by optimizations |
| 133 is_broken |= tag.startswith('opt') | 135 is_broken |= tag.startswith('opt') |
| 134 | 136 |
| 135 name = src.split('.')[0] + '_' + tag | 137 name = src.split('.')[0] + '_' + tag |
| 136 nobj = e.ComponentObject(name + '.o', src) | 138 nobj = e.ComponentObject(name + '.o', src) |
| 137 nexe = e.ComponentProgram(name, nobj) | 139 nexe = e.ComponentProgram(name, nobj) |
| 138 node = e.CommandSelLdrTestNacl(name + '.out', | 140 node = e.CommandSelLdrTestNacl(name + '.out', |
| 139 nexe, | 141 nexe, |
| 140 exit_status='55') | 142 exit_status='55') |
| 141 e.AddNodeToTestSuite(node, ['toolchain_tests', 'small_tests'], | 143 e.AddNodeToTestSuite(node, ['toolchain_tests', 'small_tests'], |
| 142 'run_' + name +'_test', is_broken=is_broken) | 144 'run_' + name +'_test', is_broken=is_broken) |
| OLD | NEW |