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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 85 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
86 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], | 86 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], |
87 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], | 87 'debug-evaluate-locals-optimized': [PASS, NO_VARIANTS], |
88 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], | 88 'debug-evaluate-locals-optimized-double': [PASS, NO_VARIANTS], |
89 'debug-evaluate-recursive': [PASS, NO_VARIANTS], # only in no-snap debug. | 89 'debug-evaluate-recursive': [PASS, NO_VARIANTS], # only in no-snap debug. |
90 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 90 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
91 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 91 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
92 'debug-set-variable-value': [PASS, NO_VARIANTS], | 92 'debug-set-variable-value': [PASS, NO_VARIANTS], |
93 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], | 93 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], |
94 | 94 |
95 # TODO(mstarzinger): Use frontend's catch prediction in Turbofan. | |
96 'debug-exceptions': [PASS, NO_VARIANTS], | |
97 | |
98 # Assumptions about optimization need investigation in TurboFan. | 95 # Assumptions about optimization need investigation in TurboFan. |
99 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 96 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
100 | 97 |
101 # Fails in --turbo --always-opt mode. | 98 # Fails in --turbo --always-opt mode. |
102 'regress/regress-105': [PASS, NO_VARIANTS], | 99 'regress/regress-105': [PASS, NO_VARIANTS], |
103 | 100 |
104 ############################################################################## | 101 ############################################################################## |
105 # Too slow in debug mode with --stress-opt mode. | 102 # Too slow in debug mode with --stress-opt mode. |
106 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 103 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
107 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 104 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 ############################################################################## | 774 ############################################################################## |
778 ['gcov_coverage', { | 775 ['gcov_coverage', { |
779 # Tests taking too long. | 776 # Tests taking too long. |
780 'array-functions-prototype-misc': [SKIP], | 777 'array-functions-prototype-misc': [SKIP], |
781 | 778 |
782 # Stack overflow. | 779 # Stack overflow. |
783 'big-array-literal': [SKIP], | 780 'big-array-literal': [SKIP], |
784 }], # 'gcov_coverage' | 781 }], # 'gcov_coverage' |
785 | 782 |
786 ] | 783 ] |
OLD | NEW |