| 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/poppler/*': [PASS, SLOW, FAST_VARIANTS], |
| 227 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], | 228 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], |
| 228 | 229 |
| 229 # BUG(v8:3838). | 230 # BUG(v8:3838). |
| 230 'regress/regress-3116': [PASS, ['isolates', FLAKY]], | 231 'regress/regress-3116': [PASS, ['isolates', FLAKY]], |
| 231 }], # ALWAYS | 232 }], # ALWAYS |
| 232 | 233 |
| 233 ############################################################################## | 234 ############################################################################## |
| 234 ['gc_stress == True', { | 235 ['gc_stress == True', { |
| 235 # Skip tests not suitable for GC stress. | 236 # Skip tests not suitable for GC stress. |
| 236 'allocation-site-info': [SKIP], | 237 'allocation-site-info': [SKIP], |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 'regress/regress-2653': [SKIP], | 637 'regress/regress-2653': [SKIP], |
| 637 }], # 'deopt_fuzzer == True' | 638 }], # 'deopt_fuzzer == True' |
| 638 | 639 |
| 639 ############################################################################## | 640 ############################################################################## |
| 640 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 641 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 641 | 642 |
| 642 # take too long with the simulator. | 643 # take too long with the simulator. |
| 643 'regress/regress-1132': [SKIP], | 644 'regress/regress-1132': [SKIP], |
| 644 }], # 'arch == ppc and simulator_run == True' | 645 }], # 'arch == ppc and simulator_run == True' |
| 645 ] | 646 ] |
| OLD | NEW |