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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 528 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
529 | 529 |
530 ['asan == True', { | 530 ['asan == True', { |
531 # BUG(v8:4653): Test262 tests which rely on quit() are not compatible with | 531 # BUG(v8:4653): Test262 tests which rely on quit() are not compatible with |
532 # asan's --omit-quit flag. | 532 # asan's --omit-quit flag. |
533 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 533 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
534 | 534 |
535 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 535 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
536 # The failed allocation causes an asan error | 536 # The failed allocation causes an asan error |
537 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 537 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
538 }], | 538 }], # asan == True |
| 539 |
| 540 ['msan == True', { |
| 541 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 542 # The failed allocation causes an msan error |
| 543 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 544 }], # msan == True |
539 | 545 |
540 ['ignition == True', { | 546 ['ignition == True', { |
541 'annexB/B.2.3.*': [SKIP], | 547 'annexB/B.2.3.*': [SKIP], |
542 'built-ins/Array/prototype/reduce/*': [SKIP], | 548 'built-ins/Array/prototype/reduce/*': [SKIP], |
543 'built-ins/Array/prototype/reduceRight/*': [SKIP], | 549 'built-ins/Array/prototype/reduceRight/*': [SKIP], |
544 'built-ins/GeneratorFunction/*': [SKIP], | 550 'built-ins/GeneratorFunction/*': [SKIP], |
545 'built-ins/GeneratorPrototype/*': [SKIP], | 551 'built-ins/GeneratorPrototype/*': [SKIP], |
546 'built-ins/Promise/prototype/then/capability-executor-called-twice': [SKIP], | 552 'built-ins/Promise/prototype/then/capability-executor-called-twice': [SKIP], |
547 'built-ins/Promise/prototype/then/capability-executor-not-callable': [SKIP], | 553 'built-ins/Promise/prototype/then/capability-executor-not-callable': [SKIP], |
548 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 554 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2': [SKIP], | 713 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2': [SKIP], |
708 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3': [SKIP], | 714 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3': [SKIP], |
709 'intl402/9.2.2': [SKIP], | 715 'intl402/9.2.2': [SKIP], |
710 'language/statements/let/fn-name-arrow': [SKIP], | 716 'language/statements/let/fn-name-arrow': [SKIP], |
711 'language/statements/let/fn-name-cover': [SKIP], | 717 'language/statements/let/fn-name-cover': [SKIP], |
712 'language/statements/let/fn-name-fn': [SKIP], | 718 'language/statements/let/fn-name-fn': [SKIP], |
713 'language/statements/let/fn-name-gen': [SKIP], | 719 'language/statements/let/fn-name-gen': [SKIP], |
714 }], # ignition == True and (arch == arm or arch == arm64) | 720 }], # ignition == True and (arch == arm or arch == arm64) |
715 | 721 |
716 ] | 722 ] |
OLD | NEW |