| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points | 133 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points |
| 134 'result-table-min': [PASS, NO_VARIANTS], | 134 'result-table-min': [PASS, NO_VARIANTS], |
| 135 'result-table-max': [PASS, NO_VARIANTS], | 135 'result-table-max': [PASS, NO_VARIANTS], |
| 136 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 136 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
| 137 'regress/regress-1122': [PASS, NO_VARIANTS], | 137 'regress/regress-1122': [PASS, NO_VARIANTS], |
| 138 | 138 |
| 139 # Assumptions about optimization need investigation in TurboFan. | 139 # Assumptions about optimization need investigation in TurboFan. |
| 140 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 140 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 141 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], | 141 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], |
| 142 | 142 |
| 143 # Fails in --turbo --always-opt mode. |
| 144 'regress/regress-105': [PASS, NO_VARIANTS], |
| 145 |
| 143 ############################################################################## | 146 ############################################################################## |
| 144 # Too slow in debug mode with --stress-opt mode. | 147 # Too slow in debug mode with --stress-opt mode. |
| 145 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 148 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 146 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 149 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| 147 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 150 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
| 148 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 151 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 149 | 152 |
| 150 ############################################################################## | 153 ############################################################################## |
| 151 # Too slow in debug mode for validation of elements. | 154 # Too slow in debug mode for validation of elements. |
| 152 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], | 155 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], |
| (...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 ############################################################################## | 879 ############################################################################## |
| 877 ['gcov_coverage', { | 880 ['gcov_coverage', { |
| 878 # Tests taking too long. | 881 # Tests taking too long. |
| 879 'array-functions-prototype-misc': [SKIP], | 882 'array-functions-prototype-misc': [SKIP], |
| 880 | 883 |
| 881 # Stack overflow. | 884 # Stack overflow. |
| 882 'big-array-literal': [SKIP], | 885 'big-array-literal': [SKIP], |
| 883 }], # 'gcov_coverage' | 886 }], # 'gcov_coverage' |
| 884 | 887 |
| 885 ] | 888 ] |
| OLD | NEW |