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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 'regress/regress-prepare-break-while-recompile': [FAIL], | 663 'regress/regress-prepare-break-while-recompile': [FAIL], |
664 | 664 |
665 # Modules for which execution must fail (e.g. because of unresolved imports). | 665 # Modules for which execution must fail (e.g. because of unresolved imports). |
666 # Eventually we should test for the precise error message, but for now we only | 666 # Eventually we should test for the precise error message, but for now we only |
667 # ensure that there is an error. | 667 # ensure that there is an error. |
668 'modules-fail*': [FAIL], | 668 'modules-fail*': [FAIL], |
669 | 669 |
670 # Modules which are only meant to be imported from by other tests, not to be | 670 # Modules which are only meant to be imported from by other tests, not to be |
671 # tested standalone. | 671 # tested standalone. |
672 'modules-skip*': [SKIP], | 672 'modules-skip*': [SKIP], |
| 673 |
| 674 # BUG(v8:5451): Flaky crashes. |
| 675 'wasm/asm-wasm': [PASS, ['gc_stress', SKIP]], |
673 }], # variant == ignition | 676 }], # variant == ignition |
674 | 677 |
675 ['variant == ignition and arch == arm64', { | 678 ['variant == ignition and arch == arm64', { |
676 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 679 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
677 'asm/construct-double': [SKIP], | 680 'asm/construct-double': [SKIP], |
678 'compiler/osr-one': [SKIP], | 681 'compiler/osr-one': [SKIP], |
679 'compiler/osr-two': [SKIP], | 682 'compiler/osr-two': [SKIP], |
680 'wasm/asm-wasm-i32': [SKIP], | 683 'wasm/asm-wasm-i32': [SKIP], |
681 'wasm/asm-wasm-u32': [SKIP], | 684 'wasm/asm-wasm-u32': [SKIP], |
682 }], # variant == ignition and arch == arm64 | 685 }], # variant == ignition and arch == arm64 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 | 718 |
716 # Flaky. | 719 # Flaky. |
717 'asm/int32div': [SKIP], | 720 'asm/int32div': [SKIP], |
718 'asm/int32mod': [SKIP], | 721 'asm/int32mod': [SKIP], |
719 'compiler/uint32': [SKIP], | 722 'compiler/uint32': [SKIP], |
720 'regress/regress-454725': [SKIP], | 723 'regress/regress-454725': [SKIP], |
721 | 724 |
722 # Might trigger stack overflow. | 725 # Might trigger stack overflow. |
723 'unicode-test': [SKIP], | 726 'unicode-test': [SKIP], |
724 | 727 |
| 728 # BUG(v8:5451): Flaky crashes. |
| 729 'wasm/asm-wasm': [PASS, ['gc_stress', SKIP]], |
725 }], # variant == ignition_staging | 730 }], # variant == ignition_staging |
726 | 731 |
727 ############################################################################## | 732 ############################################################################## |
728 ['variant == ignition_turbofan', { | 733 ['variant == ignition_turbofan', { |
729 'debug-liveedit-double-call': [FAIL], | 734 'debug-liveedit-double-call': [FAIL], |
730 | 735 |
731 # Might trigger stack overflow. | 736 # Might trigger stack overflow. |
732 'unicode-test': [SKIP], | 737 'unicode-test': [SKIP], |
733 | 738 |
734 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', SKIP]], | 739 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', SKIP]], |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 'lithium/*': [SKIP], | 812 'lithium/*': [SKIP], |
808 'third_party/*': [SKIP], | 813 'third_party/*': [SKIP], |
809 'tools/*': [SKIP], | 814 'tools/*': [SKIP], |
810 'apply': [SKIP], | 815 'apply': [SKIP], |
811 'math-*': [SKIP], | 816 'math-*': [SKIP], |
812 'unicode-test': [SKIP], | 817 'unicode-test': [SKIP], |
813 'whitespaces': [SKIP], | 818 'whitespaces': [SKIP], |
814 }], # variant == asm_wasm | 819 }], # variant == asm_wasm |
815 | 820 |
816 ] | 821 ] |
OLD | NEW |