| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 # Assumptions about optimization need investigation in TurboFan. | 173 # Assumptions about optimization need investigation in TurboFan. |
| 174 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 174 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 175 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], | 175 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], |
| 176 | 176 |
| 177 # issue 4078: | 177 # issue 4078: |
| 178 'allocation-site-info': [PASS, NO_VARIANTS], | 178 'allocation-site-info': [PASS, NO_VARIANTS], |
| 179 | 179 |
| 180 # TODO(turbofan): The escape analysis needs some investigation. |
| 181 'compiler/escape-analysis-deopt-5': [PASS, NO_VARIANTS], |
| 182 |
| 180 ############################################################################## | 183 ############################################################################## |
| 181 # Too slow in debug mode with --stress-opt mode. | 184 # Too slow in debug mode with --stress-opt mode. |
| 182 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 185 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 183 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 186 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| 184 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 187 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
| 185 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 188 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 186 | 189 |
| 187 ############################################################################## | 190 ############################################################################## |
| 188 # Too slow in debug mode for validation of elements. | 191 # Too slow in debug mode for validation of elements. |
| 189 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], | 192 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 920 # Tests taking too long. | 923 # Tests taking too long. |
| 921 'array-functions-prototype-misc': [SKIP], | 924 'array-functions-prototype-misc': [SKIP], |
| 922 'strong/implicit-conversions': [SKIP], | 925 'strong/implicit-conversions': [SKIP], |
| 923 'strong/load-element-mutate-backing-store': [SKIP], | 926 'strong/load-element-mutate-backing-store': [SKIP], |
| 924 | 927 |
| 925 # Stack overflow. | 928 # Stack overflow. |
| 926 'big-array-literal': [SKIP], | 929 'big-array-literal': [SKIP], |
| 927 }], # 'gcov_coverage' | 930 }], # 'gcov_coverage' |
| 928 | 931 |
| 929 ] | 932 ] |
| OLD | NEW |