| 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 585 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 586 # The failed allocation causes an asan/msan/tsan error | 586 # The failed allocation causes an asan/msan/tsan error |
| 587 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 587 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 588 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], | 588 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], |
| 589 }], # asan == True or msan == True or tsan == True | 589 }], # asan == True or msan == True or tsan == True |
| 590 | 590 |
| 591 ['variant == asm_wasm', { | 591 ['variant == asm_wasm', { |
| 592 '*': [SKIP], | 592 '*': [SKIP], |
| 593 }], # variant == asm_wasm | 593 }], # variant == asm_wasm |
| 594 | 594 |
| 595 ['variant == wasm_traps', { |
| 596 '*': [SKIP], |
| 597 }], # variant == wasm_traps |
| 595 | 598 |
| 596 # Module-related tests | 599 # Module-related tests |
| 597 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 | 600 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 |
| 598 | 601 |
| 599 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { | 602 ['variant != ignition and variant != ignition_staging and variant != ignition_tu
rbofan', { |
| 600 'language/eval-code/direct/export': [SKIP], | 603 'language/eval-code/direct/export': [SKIP], |
| 601 'language/eval-code/direct/import': [SKIP], | 604 'language/eval-code/direct/import': [SKIP], |
| 602 'language/eval-code/indirect/export': [SKIP], | 605 'language/eval-code/indirect/export': [SKIP], |
| 603 'language/eval-code/indirect/import': [SKIP], | 606 'language/eval-code/indirect/import': [SKIP], |
| 604 'language/module-code/*': [SKIP], | 607 'language/module-code/*': [SKIP], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 616 | 619 |
| 617 # v8:5487 | 620 # v8:5487 |
| 618 'language/module-code/namespace/internals/get-own-property-str-found-uninit':
[FAIL], | 621 'language/module-code/namespace/internals/get-own-property-str-found-uninit':
[FAIL], |
| 619 | 622 |
| 620 # v8:5401 | 623 # v8:5401 |
| 621 'language/module-code/namespace/internals/set': [FAIL], | 624 'language/module-code/namespace/internals/set': [FAIL], |
| 622 'language/module-code/namespace/internals/define-own-property': [FAIL], | 625 'language/module-code/namespace/internals/define-own-property': [FAIL], |
| 623 }], # variant == ignition or variant == ignition_staging or variant == ignition
_turbofan | 626 }], # variant == ignition or variant == ignition_staging or variant == ignition
_turbofan |
| 624 | 627 |
| 625 ] | 628 ] |
| OLD | NEW |