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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 ['system == windows', { | 623 ['system == windows', { |
624 # TODO(mstarzinger): Too slow with turbo fan. | 624 # TODO(mstarzinger): Too slow with turbo fan. |
625 'big-object-literal': [PASS, ['mode == debug', SKIP]], | 625 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
626 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], | 626 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], |
627 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], | 627 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], |
628 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], | 628 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], |
629 'unicodelctest': [PASS, ['mode == debug', SKIP]], | 629 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
630 | 630 |
631 # BUG(v8:3435) | 631 # BUG(v8:3435) |
632 'debug-script-breakpoints': [PASS, FAIL], | 632 'debug-script-breakpoints': [PASS, FAIL], |
| 633 |
| 634 # BUG(v8:4495). |
| 635 'es6/collections': [PASS, ['arch == ia32', FAST_VARIANTS]], |
633 }], # 'system == windows' | 636 }], # 'system == windows' |
634 | 637 |
635 ############################################################################## | 638 ############################################################################## |
636 # Native Client uses the ARM simulator so will behave similarly to arm | 639 # Native Client uses the ARM simulator so will behave similarly to arm |
637 # on mjsunit tests. | 640 # on mjsunit tests. |
638 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | 641 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
639 # the ARM simulator. | 642 # the ARM simulator. |
640 ############################################################################## | 643 ############################################################################## |
641 ['arch == nacl_ia32 or arch == nacl_x64', { | 644 ['arch == nacl_ia32 or arch == nacl_x64', { |
642 # There is no /tmp directory for NaCl runs | 645 # There is no /tmp directory for NaCl runs |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
714 'd8-worker-sharedarraybuffer': [SKIP], | 717 'd8-worker-sharedarraybuffer': [SKIP], |
715 }], # 'predictable == True' | 718 }], # 'predictable == True' |
716 | 719 |
717 ############################################################################## | 720 ############################################################################## |
718 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 721 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
719 | 722 |
720 # take too long with the simulator. | 723 # take too long with the simulator. |
721 'regress/regress-1132': [SKIP], | 724 'regress/regress-1132': [SKIP], |
722 }], # 'arch == ppc and simulator_run == True' | 725 }], # 'arch == ppc and simulator_run == True' |
723 ] | 726 ] |
OLD | NEW |