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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'result-table-max': [PASS, NO_VARIANTS], | 151 'result-table-max': [PASS, NO_VARIANTS], |
152 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 152 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
153 'regress/regress-1122': [PASS, NO_VARIANTS], | 153 'regress/regress-1122': [PASS, NO_VARIANTS], |
154 | 154 |
155 # Issue 4493: Open issues before we can ship general purpose inlining. | 155 # Issue 4493: Open issues before we can ship general purpose inlining. |
156 'array-reduce': [PASS, NO_VARIANTS], | 156 'array-reduce': [PASS, NO_VARIANTS], |
157 'compiler/lazy-deopt-in-literal': [PASS, NO_VARIANTS], | 157 'compiler/lazy-deopt-in-literal': [PASS, NO_VARIANTS], |
158 'compiler/osr-infinite': [PASS, NO_VARIANTS], | 158 'compiler/osr-infinite': [PASS, NO_VARIANTS], |
159 'es6/array-find': [PASS, NO_VARIANTS], | 159 'es6/array-find': [PASS, NO_VARIANTS], |
160 'es6/array-findindex': [PASS, NO_VARIANTS], | 160 'es6/array-findindex': [PASS, NO_VARIANTS], |
| 161 'es6/generators-runtime': [PASS, NO_VARIANTS], # only in GC stress. |
161 'es6/microtask-delivery': [PASS, NO_VARIANTS], | 162 'es6/microtask-delivery': [PASS, NO_VARIANTS], |
162 'es6/promises': [PASS, NO_VARIANTS], # only on 64-bit. | 163 'es6/promises': [PASS, NO_VARIANTS], # only on 64-bit. |
163 'es6/templates': [PASS, NO_VARIANTS], | 164 'es6/templates': [PASS, NO_VARIANTS], |
164 'es6/typedarray-find': [PASS, NO_VARIANTS], | 165 'es6/typedarray-find': [PASS, NO_VARIANTS], |
165 'es6/typedarray-findindex': [PASS, NO_VARIANTS], | 166 'es6/typedarray-findindex': [PASS, NO_VARIANTS], |
166 'harmony/destructuring': [PASS, NO_VARIANTS], | 167 'harmony/destructuring': [PASS, NO_VARIANTS], |
167 'harmony/proxies': [PASS, NO_VARIANTS], | 168 'harmony/proxies': [PASS, NO_VARIANTS], |
168 'harmony/proxies-example-membrane': [PASS, NO_VARIANTS], # only on 64-bit. | 169 'harmony/proxies-example-membrane': [PASS, NO_VARIANTS], # only on 64-bit. |
| 170 'harmony/reflect': [PASS, NO_VARIANTS], # only in arm64 sim debug. |
169 'harmony/spread-array': [PASS, NO_VARIANTS], | 171 'harmony/spread-array': [PASS, NO_VARIANTS], |
170 'regress/cross-script-vars': [PASS, NO_VARIANTS], | 172 'regress/cross-script-vars': [PASS, NO_VARIANTS], |
171 'tools/profile': [PASS, NO_VARIANTS], | 173 'tools/profile': [PASS, NO_VARIANTS], |
172 | 174 |
173 # issue 4078: | 175 # issue 4078: |
174 'allocation-site-info': [PASS, NO_VARIANTS], | 176 'allocation-site-info': [PASS, NO_VARIANTS], |
175 | 177 |
176 ############################################################################## | 178 ############################################################################## |
177 # Too slow in debug mode with --stress-opt mode. | 179 # Too slow in debug mode with --stress-opt mode. |
178 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 180 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 'd8-worker-sharedarraybuffer': [SKIP], | 734 'd8-worker-sharedarraybuffer': [SKIP], |
733 }], # 'predictable == True' | 735 }], # 'predictable == True' |
734 | 736 |
735 ############################################################################## | 737 ############################################################################## |
736 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 738 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
737 | 739 |
738 # take too long with the simulator. | 740 # take too long with the simulator. |
739 'regress/regress-1132': [SKIP], | 741 'regress/regress-1132': [SKIP], |
740 }], # 'arch == ppc and simulator_run == True' | 742 }], # 'arch == ppc and simulator_run == True' |
741 ] | 743 ] |
OLD | NEW |