OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'debug-evaluate-with': [PASS, NO_VARIANTS], | 125 'debug-evaluate-with': [PASS, NO_VARIANTS], |
126 | 126 |
127 # TODO(mstarzinger): Optimizing top-level code flushed out some correctness | 127 # TODO(mstarzinger): Optimizing top-level code flushed out some correctness |
128 # issues on ARM and ARM64. | 128 # issues on ARM and ARM64. |
129 'es6/math-log2-log10': [PASS, NO_VARIANTS], # on ARM and ARM64. | 129 'es6/math-log2-log10': [PASS, NO_VARIANTS], # on ARM and ARM64. |
130 'mirror-script': [PASS, NO_VARIANTS], # on ARM64 only. | 130 'mirror-script': [PASS, NO_VARIANTS], # on ARM64 only. |
131 | 131 |
132 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 132 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
133 'debug-evaluate-const': [PASS, NO_VARIANTS], | 133 'debug-evaluate-const': [PASS, NO_VARIANTS], |
134 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 134 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
| 135 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], |
135 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 136 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
136 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 137 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
137 'debug-set-variable-value': [PASS, NO_VARIANTS], | 138 'debug-set-variable-value': [PASS, NO_VARIANTS], |
138 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], | 139 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], |
139 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], | 140 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], |
140 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], | 141 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], |
141 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], | 142 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], |
142 # issue 4055: | 143 # issue 4055: |
143 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], | 144 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], |
144 | 145 |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 'regress/regress-2653': [SKIP], | 672 'regress/regress-2653': [SKIP], |
672 }], # 'deopt_fuzzer == True' | 673 }], # 'deopt_fuzzer == True' |
673 | 674 |
674 ############################################################################## | 675 ############################################################################## |
675 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 676 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
676 | 677 |
677 # take too long with the simulator. | 678 # take too long with the simulator. |
678 'regress/regress-1132': [SKIP], | 679 'regress/regress-1132': [SKIP], |
679 }], # 'arch == ppc and simulator_run == True' | 680 }], # 'arch == ppc and simulator_run == True' |
680 ] | 681 ] |
OLD | NEW |