| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 238 |
| 239 # Too slow for slow variants. | 239 # Too slow for slow variants. |
| 240 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 240 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
| 241 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], | 241 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], |
| 242 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], | 242 'asm/sqlite3/*': [PASS, SLOW, FAST_VARIANTS], |
| 243 | 243 |
| 244 # BUG(v8:3838). | 244 # BUG(v8:3838). |
| 245 'regress/regress-3116': [PASS, ['isolates', FLAKY]], | 245 'regress/regress-3116': [PASS, ['isolates', FLAKY]], |
| 246 }], # ALWAYS | 246 }], # ALWAYS |
| 247 | 247 |
| 248 ['novfp3 == True', { |
| 249 'asm/embenchen/box2d': [SKIP], |
| 250 'asm/embenchen/zlib': [SKIP], |
| 251 'asm/embenchen/memops': [SKIP], |
| 252 'asm/embenchen/lua_binarytrees': [SKIP], |
| 253 }], # novfp3 == True |
| 254 |
| 248 ############################################################################## | 255 ############################################################################## |
| 249 ['gc_stress == True', { | 256 ['gc_stress == True', { |
| 250 # Skip tests not suitable for GC stress. | 257 # Skip tests not suitable for GC stress. |
| 251 'allocation-site-info': [SKIP], | 258 'allocation-site-info': [SKIP], |
| 252 'array-constructor-feedback': [SKIP], | 259 'array-constructor-feedback': [SKIP], |
| 253 'array-feedback': [SKIP], | 260 'array-feedback': [SKIP], |
| 254 'array-literal-feedback': [SKIP], | 261 'array-literal-feedback': [SKIP], |
| 255 'd8-performance-now': [SKIP], | 262 'd8-performance-now': [SKIP], |
| 256 'debug-stepout-scope-part8': [PASS, ['arch == arm ', FAIL]], | 263 'debug-stepout-scope-part8': [PASS, ['arch == arm ', FAIL]], |
| 257 'elements-kind': [SKIP], | 264 'elements-kind': [SKIP], |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 'regress/regress-2653': [SKIP], | 667 'regress/regress-2653': [SKIP], |
| 661 }], # 'deopt_fuzzer == True' | 668 }], # 'deopt_fuzzer == True' |
| 662 | 669 |
| 663 ############################################################################## | 670 ############################################################################## |
| 664 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 671 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 665 | 672 |
| 666 # take too long with the simulator. | 673 # take too long with the simulator. |
| 667 'regress/regress-1132': [SKIP], | 674 'regress/regress-1132': [SKIP], |
| 668 }], # 'arch == ppc and simulator_run == True' | 675 }], # 'arch == ppc and simulator_run == True' |
| 669 ] | 676 ] |
| OLD | NEW |