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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 # issue 4055: | 141 # issue 4055: |
142 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], | 142 'es6/generators-debug-scopes': [PASS, NO_VARIANTS], |
143 | 143 |
144 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points | 144 # TODO(titzer): --always-opt incorrectly disables CrankShaft soft deopt points |
145 'result-table-min': [PASS, NO_VARIANTS], | 145 'result-table-min': [PASS, NO_VARIANTS], |
146 'result-table-max': [PASS, NO_VARIANTS], | 146 'result-table-max': [PASS, NO_VARIANTS], |
147 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. | 147 # TODO(titzer): too slow in --turbo mode due to O(n^2) graph verification. |
148 'regress/regress-1122': [PASS, NO_VARIANTS], | 148 'regress/regress-1122': [PASS, NO_VARIANTS], |
149 | 149 |
150 # Assumptions about optimization need investigation in TurboFan. | 150 # Assumptions about optimization need investigation in TurboFan. |
151 'compiler/inlined-call': [PASS, NO_VARIANTS], | |
152 'deopt-with-fp-regs': [PASS, NO_VARIANTS], | |
153 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 151 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
154 | 152 |
155 # issue 4078: | 153 # issue 4078: |
156 'allocation-site-info': [PASS, NO_VARIANTS], | 154 'allocation-site-info': [PASS, NO_VARIANTS], |
157 | 155 |
158 ############################################################################## | 156 ############################################################################## |
159 # Too slow in debug mode with --stress-opt mode. | 157 # Too slow in debug mode with --stress-opt mode. |
160 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 158 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
161 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 159 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
162 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 160 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 'd8-worker-sharedarraybuffer': [SKIP], | 718 'd8-worker-sharedarraybuffer': [SKIP], |
721 }], # 'predictable == True' | 719 }], # 'predictable == True' |
722 | 720 |
723 ############################################################################## | 721 ############################################################################## |
724 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 722 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
725 | 723 |
726 # take too long with the simulator. | 724 # take too long with the simulator. |
727 'regress/regress-1132': [SKIP], | 725 'regress/regress-1132': [SKIP], |
728 }], # 'arch == ppc and simulator_run == True' | 726 }], # 'arch == ppc and simulator_run == True' |
729 ] | 727 ] |
OLD | NEW |