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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 95 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
96 'debug-evaluate-locals': [PASS, NO_VARIANTS], | 96 'debug-evaluate-locals': [PASS, NO_VARIANTS], |
97 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], | 97 'debug-evaluate-locals-capturing': [PASS, NO_VARIANTS], |
98 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. | 98 'debug-liveedit-check-stack': [PASS, NO_VARIANTS], # only in no-snap mode. |
99 'debug-liveedit-double-call': [PASS, NO_VARIANTS], | 99 'debug-liveedit-double-call': [PASS, NO_VARIANTS], |
100 'debug-set-variable-value': [PASS, NO_VARIANTS], | 100 'debug-set-variable-value': [PASS, NO_VARIANTS], |
101 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], | 101 'debug-stepout-scope-part1': [PASS, NO_VARIANTS], |
102 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], | 102 'debug-stepout-scope-part2': [PASS, NO_VARIANTS], |
103 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], | 103 'debug-stepout-scope-part3': [PASS, NO_VARIANTS], |
104 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], | 104 'es6/debug-evaluate-blockscopes': [PASS, NO_VARIANTS], |
105 # Issue 4055: Scope chain length observed by debugger is off. | |
106 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], | |
107 | 105 |
108 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points | 106 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points |
109 'result-table-min': [PASS, NO_VARIANTS], | 107 'result-table-min': [PASS, NO_VARIANTS], |
110 'result-table-max': [PASS, NO_VARIANTS], | 108 'result-table-max': [PASS, NO_VARIANTS], |
111 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 109 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
112 'regress/regress-1122': [PASS, NO_VARIANTS], | 110 'regress/regress-1122': [PASS, NO_VARIANTS], |
113 | 111 |
114 # Assumptions about optimization need investigation in TurboFan. | 112 # Assumptions about optimization need investigation in TurboFan. |
115 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 113 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
116 | 114 |
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 ############################################################################## | 843 ############################################################################## |
846 ['gcov_coverage', { | 844 ['gcov_coverage', { |
847 # Tests taking too long. | 845 # Tests taking too long. |
848 'array-functions-prototype-misc': [SKIP], | 846 'array-functions-prototype-misc': [SKIP], |
849 | 847 |
850 # Stack overflow. | 848 # Stack overflow. |
851 'big-array-literal': [SKIP], | 849 'big-array-literal': [SKIP], |
852 }], # 'gcov_coverage' | 850 }], # 'gcov_coverage' |
853 | 851 |
854 ] | 852 ] |
OLD | NEW |