| 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 605 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 606 # The failed allocation causes an asan/msan/tsan error | 606 # The failed allocation causes an asan/msan/tsan error |
| 607 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 607 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 608 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], | 608 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], |
| 609 }], # asan == True or msan == True or tsan == True | 609 }], # asan == True or msan == True or tsan == True |
| 610 | 610 |
| 611 ['variant == asm_wasm', { | 611 ['variant == asm_wasm', { |
| 612 '*': [SKIP], | 612 '*': [SKIP], |
| 613 }], # variant == asm_wasm | 613 }], # variant == asm_wasm |
| 614 | 614 |
| 615 ['variant == wasm_traps', { |
| 616 '*': [SKIP], |
| 617 }], # variant == wasm_traps |
| 615 | 618 |
| 616 # Module-related tests | 619 # Module-related tests |
| 617 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 | 620 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 |
| 618 | 621 |
| 619 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { | 622 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { |
| 620 'language/eval-code/direct/export': [SKIP], | 623 'language/eval-code/direct/export': [SKIP], |
| 621 'language/eval-code/direct/import': [SKIP], | 624 'language/eval-code/direct/import': [SKIP], |
| 622 'language/eval-code/indirect/export': [SKIP], | 625 'language/eval-code/indirect/export': [SKIP], |
| 623 'language/eval-code/indirect/import': [SKIP], | 626 'language/eval-code/indirect/import': [SKIP], |
| 624 'language/module-code/*': [SKIP], | 627 'language/module-code/*': [SKIP], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 636 | 639 |
| 637 # v8:5487 | 640 # v8:5487 |
| 638 'language/module-code/namespace/internals/get-own-property-str-found-uninit':
[FAIL], | 641 'language/module-code/namespace/internals/get-own-property-str-found-uninit':
[FAIL], |
| 639 | 642 |
| 640 # v8:5401 | 643 # v8:5401 |
| 641 'language/module-code/namespace/internals/set': [FAIL], | 644 'language/module-code/namespace/internals/set': [FAIL], |
| 642 'language/module-code/namespace/internals/define-own-property': [FAIL], | 645 'language/module-code/namespace/internals/define-own-property': [FAIL], |
| 643 }], # variant == ignition or variant == ignition_staging or variant == ignition
_turbofan | 646 }], # variant == ignition or variant == ignition_staging or variant == ignition
_turbofan |
| 644 | 647 |
| 645 ] | 648 ] |
| OLD | NEW |