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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 'unicodelctest': [PASS, ['mode == debug', SKIP]], | 649 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
650 | 650 |
651 # BUG(v8:3435) | 651 # BUG(v8:3435) |
652 'debug-script-breakpoints': [PASS, FAIL], | 652 'debug-script-breakpoints': [PASS, FAIL], |
653 | 653 |
654 # BUG(v8:4495). | 654 # BUG(v8:4495). |
655 'es6/collections': [PASS, ['arch == ia32', FAST_VARIANTS]], | 655 'es6/collections': [PASS, ['arch == ia32', FAST_VARIANTS]], |
656 }], # 'system == windows' | 656 }], # 'system == windows' |
657 | 657 |
658 ############################################################################## | 658 ############################################################################## |
659 # Native Client uses the ARM simulator so will behave similarly to arm | |
660 # on mjsunit tests. | |
661 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | |
662 # the ARM simulator. | |
663 ############################################################################## | |
664 ['arch == nacl_ia32 or arch == nacl_x64', { | |
665 # There is no /tmp directory for NaCl runs | |
666 'd8-os': [SKIP], | |
667 | |
668 # Stack manipulations in LiveEdit is not implemented for this arch. | |
669 'debug-liveedit-check-stack': [SKIP], | |
670 'debug-liveedit-stack-padding': [SKIP], | |
671 'debug-liveedit-restart-frame': [SKIP], | |
672 'debug-liveedit-double-call': [SKIP], | |
673 | |
674 # NaCl builds have problems with this test since Pepper_28. | |
675 # V8 Issue 2786 | |
676 'math-exp-precision': [SKIP], | |
677 | |
678 # Requires bigger stack size in the Genesis and if stack size is increased, | |
679 # the test requires too much time to run. However, the problem test covers | |
680 # should be platform-independent. | |
681 'regress/regress-1132': [SKIP], | |
682 | |
683 # Poor performance for NaCl V8 causes an assertion failure for this test. | |
684 'regress/regress-165637': [SKIP], | |
685 | |
686 # Skip long running test that times out in debug mode and goes OOM on NaCl. | |
687 'regress/regress-crbug-160010': [SKIP], | |
688 | |
689 # Skip tests that timout with turbofan. | |
690 'regress/regress-1257': [PASS, NO_VARIANTS], | |
691 'regress/regress-2618': [PASS, NO_VARIANTS], | |
692 'regress/regress-298269': [PASS, NO_VARIANTS], | |
693 'regress/regress-91008': [PASS, NO_VARIANTS], | |
694 'compiler/osr-alignment': [PASS, NO_VARIANTS], | |
695 'compiler/osr-one': [PASS, NO_VARIANTS], | |
696 'compiler/osr-two': [PASS, NO_VARIANTS], | |
697 'stack-traces-overflow': [PASS, NO_VARIANTS], | |
698 'mirror-object': [PASS, NO_VARIANTS], | |
699 | |
700 # Bug(v8:2978). | |
701 'lithium/MathExp': [PASS, FAIL], | |
702 | |
703 # Lead to OOM: | |
704 'string-oom-*': [SKIP], | |
705 | |
706 # Crashes. | |
707 'harmony/private': [SKIP], | |
708 }], # 'arch == nacl_ia32 or arch == nacl_x64' | |
709 | |
710 ############################################################################## | |
711 ['arch == s390 or arch == s390x', { | 659 ['arch == s390 or arch == s390x', { |
712 | 660 |
713 # Stack manipulations in LiveEdit is not implemented for this arch. | 661 # Stack manipulations in LiveEdit is not implemented for this arch. |
714 'debug-liveedit-check-stack': [SKIP], | 662 'debug-liveedit-check-stack': [SKIP], |
715 'debug-liveedit-stack-padding': [SKIP], | 663 'debug-liveedit-stack-padding': [SKIP], |
716 'debug-liveedit-restart-frame': [SKIP], | 664 'debug-liveedit-restart-frame': [SKIP], |
717 'debug-liveedit-double-call': [SKIP], | 665 'debug-liveedit-double-call': [SKIP], |
718 }], # 'arch == s390 or arch == s390x' | 666 }], # 'arch == s390 or arch == s390x' |
719 | 667 |
720 ############################################################################## | 668 ############################################################################## |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 ############################################################################## | 776 ############################################################################## |
829 ['gcov_coverage', { | 777 ['gcov_coverage', { |
830 # Tests taking too long. | 778 # Tests taking too long. |
831 'array-functions-prototype-misc': [SKIP], | 779 'array-functions-prototype-misc': [SKIP], |
832 | 780 |
833 # Stack overflow. | 781 # Stack overflow. |
834 'big-array-literal': [SKIP], | 782 'big-array-literal': [SKIP], |
835 }], # 'gcov_coverage' | 783 }], # 'gcov_coverage' |
836 | 784 |
837 ] | 785 ] |
OLD | NEW |