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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 ['system == windows', { | 569 ['system == windows', { |
570 # TODO(mstarzinger): Too slow with turbo fan. | 570 # TODO(mstarzinger): Too slow with turbo fan. |
571 'big-object-literal': [PASS, ['mode == debug', SKIP]], | 571 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
572 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], | 572 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], |
573 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], | 573 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], |
574 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], | 574 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], |
575 'unicodelctest': [PASS, ['mode == debug', SKIP]], | 575 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
576 | 576 |
577 # BUG(v8:3435) | 577 # BUG(v8:3435) |
578 'debug-script-breakpoints': [PASS, FAIL], | 578 'debug-script-breakpoints': [PASS, FAIL], |
| 579 |
| 580 # BUG(v8:4127) |
| 581 'deserialize-script-id': [PASS, ['no_snap == True', FLAKY]], |
579 }], # 'system == windows' | 582 }], # 'system == windows' |
580 | 583 |
581 ############################################################################## | 584 ############################################################################## |
582 # Native Client uses the ARM simulator so will behave similarly to arm | 585 # Native Client uses the ARM simulator so will behave similarly to arm |
583 # on mjsunit tests. | 586 # on mjsunit tests. |
584 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | 587 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
585 # the ARM simulator. | 588 # the ARM simulator. |
586 ############################################################################## | 589 ############################################################################## |
587 ['arch == nacl_ia32 or arch == nacl_x64', { | 590 ['arch == nacl_ia32 or arch == nacl_x64', { |
588 # There is no /tmp directory for NaCl runs | 591 # There is no /tmp directory for NaCl runs |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 'regress/regress-2653': [SKIP], | 660 'regress/regress-2653': [SKIP], |
658 }], # 'deopt_fuzzer == True' | 661 }], # 'deopt_fuzzer == True' |
659 | 662 |
660 ############################################################################## | 663 ############################################################################## |
661 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 664 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
662 | 665 |
663 # take too long with the simulator. | 666 # take too long with the simulator. |
664 'regress/regress-1132': [SKIP], | 667 'regress/regress-1132': [SKIP], |
665 }], # 'arch == ppc and simulator_run == True' | 668 }], # 'arch == ppc and simulator_run == True' |
666 ] | 669 ] |
OLD | NEW |