| 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): --always-opt incorrectly disables CrankShaft soft deopt points | |
| 98 'result-table-min': [PASS, NO_VARIANTS], | |
| 99 'result-table-max': [PASS, NO_VARIANTS], | |
| 100 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 97 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
| 101 'regress/regress-1122': [PASS, NO_VARIANTS], | 98 'regress/regress-1122': [PASS, NO_VARIANTS], |
| 102 | 99 |
| 103 # Assumptions about optimization need investigation in TurboFan. | 100 # Assumptions about optimization need investigation in TurboFan. |
| 104 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 101 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 105 | 102 |
| 106 # Fails in --turbo --always-opt mode. | 103 # Fails in --turbo --always-opt mode. |
| 107 'regress/regress-105': [PASS, NO_VARIANTS], | 104 'regress/regress-105': [PASS, NO_VARIANTS], |
| 108 | 105 |
| 109 ############################################################################## | 106 ############################################################################## |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 ############################################################################## | 831 ############################################################################## |
| 835 ['gcov_coverage', { | 832 ['gcov_coverage', { |
| 836 # Tests taking too long. | 833 # Tests taking too long. |
| 837 'array-functions-prototype-misc': [SKIP], | 834 'array-functions-prototype-misc': [SKIP], |
| 838 | 835 |
| 839 # Stack overflow. | 836 # Stack overflow. |
| 840 'big-array-literal': [SKIP], | 837 'big-array-literal': [SKIP], |
| 841 }], # 'gcov_coverage' | 838 }], # 'gcov_coverage' |
| 842 | 839 |
| 843 ] | 840 ] |
| OLD | NEW |