| 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 # FIXME(machenbach): Needs to be skipped when dchecks_always_on or | 227 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], |
| 228 # debug is set. | |
| 229 # 'asm/massive/*': [PASS, SLOW, FAST_VARIANTS, ['mode == debug', SKIP]], | |
| 230 'asm/massive/*': [SKIP], | |
| 231 | 228 |
| 232 # BUG(v8:3838). | 229 # BUG(v8:3838). |
| 233 'regress/regress-3116': [PASS, ['isolates', FLAKY]], | 230 'regress/regress-3116': [PASS, ['isolates', FLAKY]], |
| 234 }], # ALWAYS | 231 }], # ALWAYS |
| 235 | 232 |
| 236 ############################################################################## | 233 ############################################################################## |
| 237 ['gc_stress == True', { | 234 ['gc_stress == True', { |
| 238 # Skip tests not suitable for GC stress. | 235 # Skip tests not suitable for GC stress. |
| 239 'allocation-site-info': [SKIP], | 236 'allocation-site-info': [SKIP], |
| 240 'array-constructor-feedback': [SKIP], | 237 'array-constructor-feedback': [SKIP], |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 'regress/regress-2653': [SKIP], | 633 'regress/regress-2653': [SKIP], |
| 637 }], # 'deopt_fuzzer == True' | 634 }], # 'deopt_fuzzer == True' |
| 638 | 635 |
| 639 ############################################################################## | 636 ############################################################################## |
| 640 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 637 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 641 | 638 |
| 642 # take too long with the simulator. | 639 # take too long with the simulator. |
| 643 'regress/regress-1132': [SKIP], | 640 'regress/regress-1132': [SKIP], |
| 644 }], # 'arch == ppc and simulator_run == True' | 641 }], # 'arch == ppc and simulator_run == True' |
| 645 ] | 642 ] |
| OLD | NEW |