| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 143 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
| 144 'regress/regress-1122': [PASS, NO_VARIANTS], | 144 'regress/regress-1122': [PASS, NO_VARIANTS], |
| 145 | 145 |
| 146 # Assumptions about optimization need investigation in TurboFan. | 146 # Assumptions about optimization need investigation in TurboFan. |
| 147 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 147 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 148 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], | 148 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], |
| 149 | 149 |
| 150 # issue 4078: | 150 # issue 4078: |
| 151 'allocation-site-info': [PASS, NO_VARIANTS], | 151 'allocation-site-info': [PASS, NO_VARIANTS], |
| 152 | 152 |
| 153 # TODO(turbofan): The escape analysis needs some investigation. | |
| 154 'compiler/escape-analysis-*': [PASS, NO_VARIANTS], | |
| 155 | |
| 156 ############################################################################## | 153 ############################################################################## |
| 157 # Too slow in debug mode with --stress-opt mode. | 154 # Too slow in debug mode with --stress-opt mode. |
| 158 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 155 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 159 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 156 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| 160 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 157 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
| 161 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 158 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 162 | 159 |
| 163 ############################################################################## | 160 ############################################################################## |
| 164 # Too slow in debug mode for validation of elements. | 161 # Too slow in debug mode for validation of elements. |
| 165 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], | 162 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 ############################################################################## | 890 ############################################################################## |
| 894 ['gcov_coverage', { | 891 ['gcov_coverage', { |
| 895 # Tests taking too long. | 892 # Tests taking too long. |
| 896 'array-functions-prototype-misc': [SKIP], | 893 'array-functions-prototype-misc': [SKIP], |
| 897 | 894 |
| 898 # Stack overflow. | 895 # Stack overflow. |
| 899 'big-array-literal': [SKIP], | 896 'big-array-literal': [SKIP], |
| 900 }], # 'gcov_coverage' | 897 }], # 'gcov_coverage' |
| 901 | 898 |
| 902 ] | 899 ] |
| OLD | NEW |