| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 | 676 |
| 677 # BUG(3251225): Tests that timeout with --nocrankshaft. | 677 # BUG(3251225): Tests that timeout with --nocrankshaft. |
| 678 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], | 678 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], |
| 679 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], | 679 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], |
| 680 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], | 680 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], |
| 681 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], | 681 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], |
| 682 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], | 682 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], |
| 683 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], | 683 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], |
| 684 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 684 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
| 685 | 685 |
| 686 ['byteorder == big', { |
| 687 # Test failures on big endian platforms due to the way the tests |
| 688 # are written |
| 689 |
| 690 # https://github.com/tc39/test262/issues/757 |
| 691 'built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-othe
r-type': [SKIP], |
| 692 }], |
| 693 |
| 686 ['asan == True', { | 694 ['asan == True', { |
| 687 # BUG(v8:4653): Test262 tests which rely on quit() are not compatible with | 695 # BUG(v8:4653): Test262 tests which rely on quit() are not compatible with |
| 688 # asan's --omit-quit flag. | 696 # asan's --omit-quit flag. |
| 689 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 697 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
| 690 }], # asan == True | 698 }], # asan == True |
| 691 | 699 |
| 692 ['asan and variant in [noturbofan, noturbofan_stress, fullcode]', { | 700 ['asan and variant in [noturbofan, noturbofan_stress, fullcode]', { |
| 693 # Demands too many resources to test the old pipeline with asan. | 701 # Demands too many resources to test the old pipeline with asan. |
| 694 '*': [SKIP], | 702 '*': [SKIP], |
| 695 }], # asan and variant in [noturbofan, noturbofan_stress, fullcode] | 703 }], # asan and variant in [noturbofan, noturbofan_stress, fullcode] |
| 696 | 704 |
| 697 ['asan == True or msan == True or tsan == True', { | 705 ['asan == True or msan == True or tsan == True', { |
| 698 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 706 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
| 699 # The failed allocation causes an asan/msan/tsan error | 707 # The failed allocation causes an asan/msan/tsan error |
| 700 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 708 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
| 701 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], | 709 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], |
| 702 'built-ins/SharedArrayBuffer/allocation-limit': [SKIP], | 710 'built-ins/SharedArrayBuffer/allocation-limit': [SKIP], |
| 703 'built-ins/SharedArrayBuffer/length-is-too-large-throws': [SKIP], | 711 'built-ins/SharedArrayBuffer/length-is-too-large-throws': [SKIP], |
| 704 }], # asan == True or msan == True or tsan == True | 712 }], # asan == True or msan == True or tsan == True |
| 705 | 713 |
| 706 ['variant == wasm_traps', { | 714 ['variant == wasm_traps', { |
| 707 '*': [SKIP], | 715 '*': [SKIP], |
| 708 }], # variant == wasm_traps | 716 }], # variant == wasm_traps |
| 709 | 717 |
| 710 ] | 718 ] |
| OLD | NEW |