| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], | 302 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], |
| 303 'math-floor-of-div': [PASS, NO_VARIANTS], | 303 'math-floor-of-div': [PASS, NO_VARIANTS], |
| 304 'unicodelctest': [PASS, NO_VARIANTS], | 304 'unicodelctest': [PASS, NO_VARIANTS], |
| 305 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 305 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
| 306 | 306 |
| 307 # Too slow for gc stress. | 307 # Too slow for gc stress. |
| 308 'asm/embenchen/box2d': [SKIP], | 308 'asm/embenchen/box2d': [SKIP], |
| 309 | 309 |
| 310 # Issue 3723. | 310 # Issue 3723. |
| 311 'regress/regress-3717': [SKIP], | 311 'regress/regress-3717': [SKIP], |
| 312 # Issue 478788. | |
| 313 'es7/object-observe': [SKIP], | |
| 314 | 312 |
| 315 # BUG(v8:4237) | 313 # BUG(v8:4237) |
| 316 'regress/regress-3976': [SKIP], | 314 'regress/regress-3976': [SKIP], |
| 317 | 315 |
| 318 # BUG(v8:4359) | 316 # BUG(v8:4359) |
| 319 'strong/load-proxy': [SKIP], | 317 'strong/load-proxy': [SKIP], |
| 320 }], # 'gc_stress == True' | 318 }], # 'gc_stress == True' |
| 321 | 319 |
| 322 ############################################################################## | 320 ############################################################################## |
| 323 ['byteorder == big', { | 321 ['byteorder == big', { |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 'harmony/symbols': [SKIP], | 649 'harmony/symbols': [SKIP], |
| 652 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 650 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 653 | 651 |
| 654 ############################################################################## | 652 ############################################################################## |
| 655 ['deopt_fuzzer == True', { | 653 ['deopt_fuzzer == True', { |
| 656 | 654 |
| 657 # Skip tests that are not suitable for deoptimization fuzzing. | 655 # Skip tests that are not suitable for deoptimization fuzzing. |
| 658 'assert-opt-and-deopt': [SKIP], | 656 'assert-opt-and-deopt': [SKIP], |
| 659 'never-optimize': [SKIP], | 657 'never-optimize': [SKIP], |
| 660 'regress/regress-2185-2': [SKIP], | 658 'regress/regress-2185-2': [SKIP], |
| 661 'harmony/object-observe': [SKIP], | |
| 662 'readonly': [SKIP], | 659 'readonly': [SKIP], |
| 663 'array-feedback': [SKIP], | 660 'array-feedback': [SKIP], |
| 664 | 661 |
| 665 # Deopting uses just enough memory to make this one OOM. | 662 # Deopting uses just enough memory to make this one OOM. |
| 666 'regress/regress-3976': [SKIP], | 663 'regress/regress-3976': [SKIP], |
| 667 | 664 |
| 668 # Deopt every n garbage collections collides with deopt every n times. | 665 # Deopt every n garbage collections collides with deopt every n times. |
| 669 'regress/regress-2653': [SKIP], | 666 'regress/regress-2653': [SKIP], |
| 670 }], # 'deopt_fuzzer == True' | 667 }], # 'deopt_fuzzer == True' |
| 671 | 668 |
| 672 ############################################################################## | 669 ############################################################################## |
| 673 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 670 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 674 | 671 |
| 675 # take too long with the simulator. | 672 # take too long with the simulator. |
| 676 'regress/regress-1132': [SKIP], | 673 'regress/regress-1132': [SKIP], |
| 677 }], # 'arch == ppc and simulator_run == True' | 674 }], # 'arch == ppc and simulator_run == True' |
| 678 ] | 675 ] |
| OLD | NEW |