| 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 | 228 |
| 228 # BUG(v8:3838). | 229 # BUG(v8:3838). |
| 229 'regress/regress-3116': [PASS, ['isolates', FLAKY]], | 230 'regress/regress-3116': [PASS, ['isolates', FLAKY]], |
| 230 }], # ALWAYS | 231 }], # ALWAYS |
| 231 | 232 |
| 232 ############################################################################## | 233 ############################################################################## |
| 233 ['gc_stress == True', { | 234 ['gc_stress == True', { |
| 234 # Skip tests not suitable for GC stress. | 235 # Skip tests not suitable for GC stress. |
| 235 'allocation-site-info': [SKIP], | 236 'allocation-site-info': [SKIP], |
| 236 'array-constructor-feedback': [SKIP], | 237 'array-constructor-feedback': [SKIP], |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 'regress/regress-2653': [SKIP], | 631 'regress/regress-2653': [SKIP], |
| 631 }], # 'deopt_fuzzer == True' | 632 }], # 'deopt_fuzzer == True' |
| 632 | 633 |
| 633 ############################################################################## | 634 ############################################################################## |
| 634 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 635 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 635 | 636 |
| 636 # take too long with the simulator. | 637 # take too long with the simulator. |
| 637 'regress/regress-1132': [SKIP], | 638 'regress/regress-1132': [SKIP], |
| 638 }], # 'arch == ppc and simulator_run == True' | 639 }], # 'arch == ppc and simulator_run == True' |
| 639 ] | 640 ] |
| OLD | NEW |