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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 # Skip endain dependent test for mips due to different typed views of the same | 186 # Skip endain dependent test for mips due to different typed views of the same |
187 # array buffer. | 187 # array buffer. |
188 'nans': [PASS, ], | 188 'nans': [PASS, ], |
189 | 189 |
190 # This test variant makes only sense on arm. | 190 # This test variant makes only sense on arm. |
191 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 191 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
192 | 192 |
193 # Too slow for slow variants. | 193 # Too slow for slow variants. |
194 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 194 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
| 195 |
| 196 # BUG(v8:3838). |
| 197 'regress/regress-3116': [PASS, ['isolates', FLAKY]], |
195 }], # ALWAYS | 198 }], # ALWAYS |
196 | 199 |
197 ############################################################################## | 200 ############################################################################## |
198 ['gc_stress == True', { | 201 ['gc_stress == True', { |
199 # Skip tests not suitable for GC stress. | 202 # Skip tests not suitable for GC stress. |
200 'allocation-site-info': [SKIP], | 203 'allocation-site-info': [SKIP], |
201 'array-constructor-feedback': [SKIP], | 204 'array-constructor-feedback': [SKIP], |
202 'array-feedback': [SKIP], | 205 'array-feedback': [SKIP], |
203 'array-literal-feedback': [SKIP], | 206 'array-literal-feedback': [SKIP], |
204 'd8-performance-now': [SKIP], | 207 'd8-performance-now': [SKIP], |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 'regress/regress-2653': [SKIP], | 592 'regress/regress-2653': [SKIP], |
590 }], # 'deopt_fuzzer == True' | 593 }], # 'deopt_fuzzer == True' |
591 | 594 |
592 ############################################################################## | 595 ############################################################################## |
593 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 596 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
594 | 597 |
595 # take too long with the simulator. | 598 # take too long with the simulator. |
596 'regress/regress-1132': [SKIP], | 599 'regress/regress-1132': [SKIP], |
597 }], # 'arch == ppc and simulator_run == True' | 600 }], # 'arch == ppc and simulator_run == True' |
598 ] | 601 ] |
OLD | NEW |