OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 615 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
616 # The failed allocation causes an asan/msan/tsan error | 616 # The failed allocation causes an asan/msan/tsan error |
617 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 617 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
618 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], | 618 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], |
619 }], # asan == True or msan == True or tsan == True | 619 }], # asan == True or msan == True or tsan == True |
620 | 620 |
621 ['variant == asm_wasm', { | 621 ['variant == asm_wasm', { |
622 '*': [SKIP], | 622 '*': [SKIP], |
623 }], # variant == asm_wasm | 623 }], # variant == asm_wasm |
624 | 624 |
| 625 |
625 # Module-related tests | 626 # Module-related tests |
626 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 | 627 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 |
| 628 |
627 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { | 629 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { |
628 'language/eval-code/direct/export': [SKIP], | 630 'language/eval-code/direct/export': [SKIP], |
629 'language/eval-code/direct/import': [SKIP], | 631 'language/eval-code/direct/import': [SKIP], |
630 'language/eval-code/indirect/export': [SKIP], | 632 'language/eval-code/indirect/export': [SKIP], |
631 'language/eval-code/indirect/import': [SKIP], | 633 'language/eval-code/indirect/import': [SKIP], |
632 'language/module-code/*': [SKIP], | 634 'language/module-code/*': [SKIP], |
633 }], # variant != ignition and variant != ignition_staging and variant != igniti
on_turbofan | 635 }], # variant != ignition and variant != ignition_staging and variant != igniti
on_turbofan |
| 636 |
634 ['variant == ignition or variant == ignition_staging or variant == ignition_turb
ofan', { | 637 ['variant == ignition or variant == ignition_staging or variant == ignition_turb
ofan', { |
635 'language/module-code/comment-*': [SKIP], | 638 # v8:5485 |
636 'language/module-code/eval-*': [SKIP], | 639 'language/module-code/comment-multi-line-html*': [FAIL], |
637 'language/module-code/instn-*': [SKIP], | 640 'language/module-code/comment-single-line-html*': [FAIL], |
638 'language/module-code/namespace/*': [SKIP], | 641 |
| 642 # v8:5486 |
| 643 'language/module-code/instn-iee-star-cycle': [FAIL], |
| 644 'language/module-code/instn-named-star-cycle': [FAIL], |
| 645 'language/module-code/instn-star-star-cycle': [FAIL], |
| 646 |
| 647 # v8:5487 |
| 648 'language/module-code/namespace/internals/get-own-property-str-found-uninit':
[FAIL], |
| 649 |
| 650 # @@iterator on namespace objects, to be implemented |
| 651 'language/module-code/namespace/internals/define-own-property': [FAIL], |
| 652 'language/module-code/namespace/internals/get-own-property-sym': [FAIL], |
| 653 'language/module-code/namespace/internals/get-sym-found': [FAIL], |
| 654 'language/module-code/namespace/internals/has-property-sym-found': [FAIL], |
| 655 'language/module-code/namespace/internals/own-property-keys-binding-types': [F
AIL], |
| 656 'language/module-code/namespace/internals/own-property-keys-sort': [FAIL], |
| 657 'language/module-code/namespace/internals/set': [FAIL], |
| 658 'language/module-code/namespace/Symbol.iterator/*': [FAIL], |
639 }], # variant == ignition or variant == ignition_staging or variant == ignition
_turbofan | 659 }], # variant == ignition or variant == ignition_staging or variant == ignition
_turbofan |
640 | 660 |
641 ] | 661 ] |
OLD | NEW |