| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 # TODO(4544): Investigate why assumptions about fast properties break. | 164 # TODO(4544): Investigate why assumptions about fast properties break. |
| 165 'fast-prototype': [PASS, NO_VARIANTS], | 165 'fast-prototype': [PASS, NO_VARIANTS], |
| 166 | 166 |
| 167 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points | 167 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points |
| 168 'result-table-min': [PASS, NO_VARIANTS], | 168 'result-table-min': [PASS, NO_VARIANTS], |
| 169 'result-table-max': [PASS, NO_VARIANTS], | 169 'result-table-max': [PASS, NO_VARIANTS], |
| 170 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 170 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
| 171 'regress/regress-1122': [PASS, NO_VARIANTS], | 171 'regress/regress-1122': [PASS, NO_VARIANTS], |
| 172 | 172 |
| 173 # TODO(sigurds): Tests that may fail because of missing deopt support. | 173 # TODO(sigurds): Tests that may fail because of missing deopt support. |
| 174 'compiler/escape-analysis-1': [PASS, NO_VARIANTS], | 174 #'compiler/escape-analysis-1': [PASS, NO_VARIANTS], |
| 175 'compiler/escape-analysis-2': [PASS, NO_VARIANTS], | 175 #'compiler/escape-analysis-2': [PASS, NO_VARIANTS], |
| 176 'compiler/escape-analysis-3': [PASS, NO_VARIANTS], | 176 #'compiler/escape-analysis-3': [PASS, NO_VARIANTS], |
| 177 'compiler/escape-analysis-4': [PASS, NO_VARIANTS], | 177 #'compiler/escape-analysis-4': [PASS, NO_VARIANTS], |
| 178 'compiler/escape-analysis-5': [PASS, NO_VARIANTS], | 178 #'compiler/escape-analysis-5': [PASS, NO_VARIANTS], |
| 179 'compiler/escape-analysis-7': [PASS, NO_VARIANTS], | |
| 180 # TODO(sigurds): Tests that fail because of incomplete phi handling. | 179 # TODO(sigurds): Tests that fail because of incomplete phi handling. |
| 181 'compiler/escape-analysis-6': [PASS, NO_VARIANTS], | 180 'compiler/escape-analysis-6': [PASS, NO_VARIANTS], |
| 182 # TODO(sigurds): Tests that fail because of incomplete use handling (i.e. sele
ct). | 181 # TODO(sigurds): Tests that fail because of incomplete use handling (i.e. sele
ct). |
| 182 'compiler/escape-analysis-7': [PASS, NO_VARIANTS], |
| 183 'compiler/escape-analysis-8': [PASS, NO_VARIANTS], | 183 'compiler/escape-analysis-8': [PASS, NO_VARIANTS], |
| 184 | 184 |
| 185 # Assumptions about optimization need investigation in TurboFan. | 185 # Assumptions about optimization need investigation in TurboFan. |
| 186 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 186 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 187 | 187 |
| 188 # issue 4078: | 188 # issue 4078: |
| 189 'allocation-site-info': [PASS, NO_VARIANTS], | 189 'allocation-site-info': [PASS, NO_VARIANTS], |
| 190 | 190 |
| 191 ############################################################################## | 191 ############################################################################## |
| 192 # Too slow in debug mode with --stress-opt mode. | 192 # Too slow in debug mode with --stress-opt mode. |
| (...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 'regress/regress-crbug-347903': [SKIP], | 1079 'regress/regress-crbug-347903': [SKIP], |
| 1080 'regress/regress-crbug-505007-1': [SKIP], | 1080 'regress/regress-crbug-505007-1': [SKIP], |
| 1081 'regress/regress-crbug-505007-2': [SKIP], | 1081 'regress/regress-crbug-505007-2': [SKIP], |
| 1082 'regress/short-circuit': [SKIP], | 1082 'regress/short-circuit': [SKIP], |
| 1083 'stack-traces-overflow': [SKIP], | 1083 'stack-traces-overflow': [SKIP], |
| 1084 'unicodelctest': [SKIP], | 1084 'unicodelctest': [SKIP], |
| 1085 'unicodelctest-no-optimization': [SKIP], | 1085 'unicodelctest-no-optimization': [SKIP], |
| 1086 }], # ignition == True and (arch == arm or arch == arm64) | 1086 }], # ignition == True and (arch == arm or arch == arm64) |
| 1087 | 1087 |
| 1088 ] | 1088 ] |
| OLD | NEW |