| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 91 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
| 92 # not work, but we expect it to not crash. | 92 # not work, but we expect it to not crash. |
| 93 'debug-step-turbofan': [PASS, FAIL], | 93 'debug-step-turbofan': [PASS, FAIL], |
| 94 | 94 |
| 95 # TODO(mstarzinger): Optimizing top-level code revealed some issues. Fix! | 95 # TODO(mstarzinger): Optimizing top-level code revealed some issues. Fix! |
| 96 'debug-compile-event-newfunction': [PASS, NO_VARIANTS], | 96 'debug-compile-event-newfunction': [PASS, NO_VARIANTS], |
| 97 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], | 97 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], |
| 98 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], | 98 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], |
| 99 'debug-evaluate-recursive': [PASS, NO_VARIANTS], # only in no-snap debug. | 99 'debug-evaluate-recursive': [PASS, NO_VARIANTS], # only in no-snap debug. |
| 100 'debug-stepframe-clearing': [PASS, NO_VARIANTS], # only in no-snap debug. |
| 100 'regress/regress-3717':[PASS, NO_VARIANTS], # only in no-snap mode. | 101 'regress/regress-3717':[PASS, NO_VARIANTS], # only in no-snap mode. |
| 101 | 102 |
| 102 # TODO(mstarzinger): Optimizing top-level code flushed out some correctness | 103 # TODO(mstarzinger): Optimizing top-level code flushed out some correctness |
| 103 # issues on ARM and ARM64. | 104 # issues on ARM and ARM64. |
| 104 'es6/math-log2-log10': [PASS, NO_VARIANTS], # on ARM and ARM64. | 105 'es6/math-log2-log10': [PASS, NO_VARIANTS], # on ARM and ARM64. |
| 105 'mirror-script': [PASS, NO_VARIANTS], # on ARM64 only. | 106 'mirror-script': [PASS, NO_VARIANTS], # on ARM64 only. |
| 106 | 107 |
| 107 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 108 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
| 108 'debug-evaluate-const': [PASS, NO_VARIANTS], | 109 'debug-evaluate-const': [PASS, NO_VARIANTS], |
| 109 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 110 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 'regress/regress-2653': [SKIP], | 609 'regress/regress-2653': [SKIP], |
| 609 }], # 'deopt_fuzzer == True' | 610 }], # 'deopt_fuzzer == True' |
| 610 | 611 |
| 611 ############################################################################## | 612 ############################################################################## |
| 612 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 613 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 613 | 614 |
| 614 # take too long with the simulator. | 615 # take too long with the simulator. |
| 615 'regress/regress-1132': [SKIP], | 616 'regress/regress-1132': [SKIP], |
| 616 }], # 'arch == ppc and simulator_run == True' | 617 }], # 'arch == ppc and simulator_run == True' |
| 617 ] | 618 ] |
| OLD | NEW |