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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 | 217 |
218 # Skip endain dependent test for mips due to different typed views of the same | 218 # Skip endain dependent test for mips due to different typed views of the same |
219 # array buffer. | 219 # array buffer. |
220 'nans': [PASS, ], | 220 'nans': [PASS, ], |
221 | 221 |
222 # This test variant makes only sense on arm. | 222 # This test variant makes only sense on arm. |
223 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 223 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
224 | 224 |
225 # Too slow for slow variants. | 225 # Too slow for slow variants. |
226 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 226 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
227 'asm/massive/*': [PASS, SLOW, FAST_VARIANTS, ['mode == debug', SKIP]], | 227 # FIXME(machenbach): Needs to be skipped when dchecks_always_on or |
| 228 # debug is set. |
| 229 # 'asm/massive/*': [PASS, SLOW, FAST_VARIANTS, ['mode == debug', SKIP]], |
| 230 'asm/massive/*': [SKIP], |
228 | 231 |
229 # BUG(v8:3838). | 232 # BUG(v8:3838). |
230 'regress/regress-3116': [PASS, ['isolates', FLAKY]], | 233 'regress/regress-3116': [PASS, ['isolates', FLAKY]], |
231 }], # ALWAYS | 234 }], # ALWAYS |
232 | 235 |
233 ############################################################################## | 236 ############################################################################## |
234 ['gc_stress == True', { | 237 ['gc_stress == True', { |
235 # Skip tests not suitable for GC stress. | 238 # Skip tests not suitable for GC stress. |
236 'allocation-site-info': [SKIP], | 239 'allocation-site-info': [SKIP], |
237 'array-constructor-feedback': [SKIP], | 240 'array-constructor-feedback': [SKIP], |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 'regress/regress-2653': [SKIP], | 634 'regress/regress-2653': [SKIP], |
632 }], # 'deopt_fuzzer == True' | 635 }], # 'deopt_fuzzer == True' |
633 | 636 |
634 ############################################################################## | 637 ############################################################################## |
635 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 638 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
636 | 639 |
637 # take too long with the simulator. | 640 # take too long with the simulator. |
638 'regress/regress-1132': [SKIP], | 641 'regress/regress-1132': [SKIP], |
639 }], # 'arch == ppc and simulator_run == True' | 642 }], # 'arch == ppc and simulator_run == True' |
640 ] | 643 ] |
OLD | NEW |