| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 'debug-evaluate-const': [PASS, NO_VARIANTS], | 131 'debug-evaluate-const': [PASS, NO_VARIANTS], |
| 132 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 132 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
| 133 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], | 133 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], |
| 134 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 134 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
| 135 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 135 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
| 136 'debug-set-variable-value': [PASS, NO_VARIANTS], | 136 'debug-set-variable-value': [PASS, NO_VARIANTS], |
| 137 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], | 137 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], |
| 138 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], | 138 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], |
| 139 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], | 139 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], |
| 140 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], | 140 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], |
| 141 # issue 4055: | 141 # Issue 4055: Scope chain length observed by debugger is off. |
| 142 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], | 142 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], |
| 143 # Issue 4544: Stepping in inlined constructors is borked. |
| 144 'es6/debug-promises/throw-in-constructor': [PASS, NO_VARIANTS], |
| 145 'es6/debug-step-into-constructor': [PASS, NO_VARIANTS], |
| 146 |
| 147 # TODO(4544): Investigate why assumptions about fast properties break. |
| 148 'fast-prototype': [PASS, NO_VARIANTS], |
| 143 | 149 |
| 144 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points | 150 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points |
| 145 'result-table-min': [PASS, NO_VARIANTS], | 151 'result-table-min': [PASS, NO_VARIANTS], |
| 146 'result-table-max': [PASS, NO_VARIANTS], | 152 'result-table-max': [PASS, NO_VARIANTS], |
| 147 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 153 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
| 148 'regress/regress-1122': [PASS, NO_VARIANTS], | 154 'regress/regress-1122': [PASS, NO_VARIANTS], |
| 149 | 155 |
| 150 # Assumptions about optimization need investigation in TurboFan. | 156 # Assumptions about optimization need investigation in TurboFan. |
| 151 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 157 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 152 | 158 |
| (...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1032 'regress/regress-crbug-347903': [SKIP], | 1038 'regress/regress-crbug-347903': [SKIP], |
| 1033 'regress/regress-crbug-505007-1': [SKIP], | 1039 'regress/regress-crbug-505007-1': [SKIP], |
| 1034 'regress/regress-crbug-505007-2': [SKIP], | 1040 'regress/regress-crbug-505007-2': [SKIP], |
| 1035 'regress/short-circuit': [SKIP], | 1041 'regress/short-circuit': [SKIP], |
| 1036 'stack-traces-overflow': [SKIP], | 1042 'stack-traces-overflow': [SKIP], |
| 1037 'unicodelctest': [SKIP], | 1043 'unicodelctest': [SKIP], |
| 1038 'unicodelctest-no-optimization': [SKIP], | 1044 'unicodelctest-no-optimization': [SKIP], |
| 1039 }], # ignition == True and (arch == arm or arch == arm64) | 1045 }], # ignition == True and (arch == arm or arch == arm64) |
| 1040 | 1046 |
| 1041 ] | 1047 ] |
| OLD | NEW |