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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 }], # 'arch == ppc and simulator_run == True' | 688 }], # 'arch == ppc and simulator_run == True' |
689 | 689 |
690 ############################################################################## | 690 ############################################################################## |
691 ['arch == ppc64', { | 691 ['arch == ppc64', { |
692 | 692 |
693 # stack overflow | 693 # stack overflow |
694 'big-array-literal': [SKIP], | 694 'big-array-literal': [SKIP], |
695 }], # 'arch == ppc64' | 695 }], # 'arch == ppc64' |
696 | 696 |
697 ############################################################################## | 697 ############################################################################## |
698 ['ignition_turbofan', { | 698 ['variant == ignition_turbofan', { |
699 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. | 699 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. |
700 'array-literal-feedback': [FAIL], | 700 'array-literal-feedback': [FAIL], |
701 'regress/regress-4121': [FAIL], | 701 'regress/regress-4121': [FAIL], |
702 'array-constructor-feedback': [FAIL], | 702 'array-constructor-feedback': [FAIL], |
703 'array-feedback': [FAIL], | 703 'array-feedback': [FAIL], |
704 'allocation-site-info': [FAIL], | 704 'allocation-site-info': [FAIL], |
705 | 705 |
706 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', SKIP]], | 706 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', SKIP]], |
707 'wasm/asm-wasm-f64': [PASS, ['arch in [arm64]', SKIP]], | 707 'wasm/asm-wasm-f64': [PASS, ['arch in [arm64]', SKIP]], |
708 | 708 |
709 # TODO(rmcilroy,titzer): Times out after | 709 # TODO(rmcilroy,titzer): Times out after |
710 # https://codereview.chromium.org/1951013002 . | 710 # https://codereview.chromium.org/1951013002 . |
711 'regress/regress-599717': [PASS, ['tsan', SKIP]], | 711 'regress/regress-599717': [PASS, ['tsan', SKIP]], |
712 | 712 |
713 # TODO(rmcilroy,5038): Crashes in Deoptimizer::PatchCodeForDeoptimization on | 713 # TODO(rmcilroy,5038): Crashes in Deoptimizer::PatchCodeForDeoptimization on |
714 # nosnap builds when --stress-opt and --turbo-from-bytecode is enabled. | 714 # nosnap builds when --stress-opt and --turbo-from-bytecode is enabled. |
715 'harmony/generators-turbo': [PASS, FAST_VARIANTS], | 715 'harmony/generators-turbo': [PASS, FAST_VARIANTS], |
716 'regress/regress-crbug-352058': [SKIP], | 716 'regress/regress-crbug-352058': [SKIP], |
717 | 717 |
718 # TODO(jarin): No truncations on CheckFloat64Hole. | 718 # TODO(jarin): No truncations on CheckFloat64Hole. |
719 'getters-on-elements': [SKIP], | 719 'getters-on-elements': [SKIP], |
720 | 720 |
721 # TODO(rmcilroy): Flaky OOM. | 721 # TODO(rmcilroy): Flaky OOM. |
722 'unicodelctest-no-optimization': [SKIP], | 722 'unicodelctest-no-optimization': [SKIP], |
723 }], # ignition_turbofan | 723 }], # variant == ignition_turbofan |
724 | 724 |
725 ['ignition_turbofan and arch == arm64', { | 725 ['variant == ignition_turbofan and arch == arm64', { |
726 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 726 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
727 'asm/construct-double': [SKIP], | 727 'asm/construct-double': [SKIP], |
728 'compiler/osr-one': [SKIP], | 728 'compiler/osr-one': [SKIP], |
729 'compiler/osr-two': [SKIP], | 729 'compiler/osr-two': [SKIP], |
730 'wasm/asm-wasm-i32': [SKIP], | 730 'wasm/asm-wasm-i32': [SKIP], |
731 'wasm/asm-wasm-u32': [SKIP], | 731 'wasm/asm-wasm-u32': [SKIP], |
732 }], # ignition_turbofan and arch == arm64 | 732 }], # variant == ignition_turbofan and arch == arm64 |
733 | 733 |
734 ['ignition_turbofan and arch == arm', { | 734 ['ignition_turbofan and arch == arm', { |
735 # TODO(rmcilroy,4680): Arm specific timeouts. | 735 # TODO(rmcilroy,4680): Arm specific timeouts. |
736 'compiler/osr-one': [SKIP], | 736 'compiler/osr-one': [SKIP], |
737 'compiler/osr-two': [SKIP], | 737 'compiler/osr-two': [SKIP], |
738 'regress/regress-1257': [SKIP], | 738 'regress/regress-1257': [SKIP], |
739 }], # ignition_turbofan and arch == arm | 739 }], # variant == ignition_turbofan and arch == arm |
740 | 740 |
741 ['ignition_turbofan and msan', { | 741 ['variant == ignition_turbofan and msan', { |
742 # TODO(mythria,4680): All of these tests have large loops and hence slow | 742 # TODO(mythria,4680): All of these tests have large loops and hence slow |
743 # and timeout. | 743 # and timeout. |
744 'compiler/osr-big': [SKIP], | 744 'compiler/osr-big': [SKIP], |
745 'compiler/osr-nested': [SKIP], | 745 'compiler/osr-nested': [SKIP], |
746 'regress/regress-298269': [SKIP], | 746 'regress/regress-298269': [SKIP], |
747 'regress/regress-crbug-319860': [SKIP], | 747 'regress/regress-crbug-319860': [SKIP], |
748 'regress/regress-deep-proto': [SKIP], | 748 'regress/regress-deep-proto': [SKIP], |
749 'try': [SKIP], | 749 'try': [SKIP], |
750 # Too slow for interpreter and msan. | 750 # Too slow for interpreter and msan. |
751 'es6/tail-call-megatest*': [SKIP], | 751 'es6/tail-call-megatest*': [SKIP], |
752 }], # ignition_turbofan and msan | 752 }], # variant == ignition_turbofan and msan |
753 | 753 |
754 ############################################################################## | 754 ############################################################################## |
755 ['gcov_coverage', { | 755 ['gcov_coverage', { |
756 # Tests taking too long. | 756 # Tests taking too long. |
757 'array-functions-prototype-misc': [SKIP], | 757 'array-functions-prototype-misc': [SKIP], |
758 | 758 |
759 # Stack overflow. | 759 # Stack overflow. |
760 'big-array-literal': [SKIP], | 760 'big-array-literal': [SKIP], |
761 }], # 'gcov_coverage' | 761 }], # 'gcov_coverage' |
762 | 762 |
763 ] | 763 ] |
OLD | NEW |