| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 87 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
| 88 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], | 88 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], |
| 89 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], | 89 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], |
| 90 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], | 90 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], |
| 91 'debug-evaluate-recursive': [PASS, NO_VARIANTS], # only in no-snap debug. | 91 'debug-evaluate-recursive': [PASS, NO_VARIANTS], # only in no-snap debug. |
| 92 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 92 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
| 93 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 93 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
| 94 'debug-set-variable-value': [PASS, NO_VARIANTS], | 94 'debug-set-variable-value': [PASS, NO_VARIANTS], |
| 95 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], | 95 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], |
| 96 | 96 |
| 97 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | |
| 98 'regress/regress-1122': [PASS, NO_VARIANTS], | |
| 99 | |
| 100 # Assumptions about optimization need investigation in TurboFan. | 97 # Assumptions about optimization need investigation in TurboFan. |
| 101 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 98 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 102 | 99 |
| 103 # Fails in --turbo --always-opt mode. | 100 # Fails in --turbo --always-opt mode. |
| 104 'regress/regress-105': [PASS, NO_VARIANTS], | 101 'regress/regress-105': [PASS, NO_VARIANTS], |
| 105 | 102 |
| 106 ############################################################################## | 103 ############################################################################## |
| 107 # Too slow in debug mode with --stress-opt mode. | 104 # Too slow in debug mode with --stress-opt mode. |
| 108 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 105 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 109 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 106 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 ############################################################################## | 828 ############################################################################## |
| 832 ['gcov_coverage', { | 829 ['gcov_coverage', { |
| 833 # Tests taking too long. | 830 # Tests taking too long. |
| 834 'array-functions-prototype-misc': [SKIP], | 831 'array-functions-prototype-misc': [SKIP], |
| 835 | 832 |
| 836 # Stack overflow. | 833 # Stack overflow. |
| 837 'big-array-literal': [SKIP], | 834 'big-array-literal': [SKIP], |
| 838 }], # 'gcov_coverage' | 835 }], # 'gcov_coverage' |
| 839 | 836 |
| 840 ] | 837 ] |
| OLD | NEW |