| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 'regress/regress-crbug-594183': [FAIL], | 681 'regress/regress-crbug-594183': [FAIL], |
| 682 'regress/regress-embedded-cons-string': [FAIL], | 682 'regress/regress-embedded-cons-string': [FAIL], |
| 683 'regress/regress-map-invalidation-2': [FAIL], | 683 'regress/regress-map-invalidation-2': [FAIL], |
| 684 'regress/regress-param-local-type': [FAIL], | 684 'regress/regress-param-local-type': [FAIL], |
| 685 'regress/regress-prepare-break-while-recompile': [FAIL], | 685 'regress/regress-prepare-break-while-recompile': [FAIL], |
| 686 'shift-for-integer-div': [FAIL], | 686 'shift-for-integer-div': [FAIL], |
| 687 'sin-cos': [FAIL], | 687 'sin-cos': [FAIL], |
| 688 'smi-mul-const': [FAIL], | 688 'smi-mul-const': [FAIL], |
| 689 'smi-mul': [FAIL], | 689 'smi-mul': [FAIL], |
| 690 'unary-minus-deopt': [FAIL], | 690 'unary-minus-deopt': [FAIL], |
| 691 |
| 692 # Modules for which execution must fail (e.g. because of unresolved imports). |
| 693 # Eventually we should test for the precise error message, but for now we only |
| 694 # ensure that there is an error. |
| 695 'modules-FAIL*': [FAIL], |
| 696 |
| 697 # Modules which are only meant to be imported from by other tests, not to be |
| 698 # tested standalone. |
| 699 'modules-SKIP*': [SKIP], |
| 691 }], # variant == ignition | 700 }], # variant == ignition |
| 692 | 701 |
| 693 ['variant == ignition and arch == arm64', { | 702 ['variant == ignition and arch == arm64', { |
| 694 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 703 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
| 695 'asm/construct-double': [SKIP], | 704 'asm/construct-double': [SKIP], |
| 696 'compiler/osr-one': [SKIP], | 705 'compiler/osr-one': [SKIP], |
| 697 'compiler/osr-two': [SKIP], | 706 'compiler/osr-two': [SKIP], |
| 698 'wasm/asm-wasm-i32': [SKIP], | 707 'wasm/asm-wasm-i32': [SKIP], |
| 699 'wasm/asm-wasm-u32': [SKIP], | 708 'wasm/asm-wasm-u32': [SKIP], |
| 700 }], # variant == ignition and arch == arm64 | 709 }], # variant == ignition and arch == arm64 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 'lithium/*': [SKIP], | 857 'lithium/*': [SKIP], |
| 849 'third_party/*': [SKIP], | 858 'third_party/*': [SKIP], |
| 850 'tools/*': [SKIP], | 859 'tools/*': [SKIP], |
| 851 'apply': [SKIP], | 860 'apply': [SKIP], |
| 852 'math-*': [SKIP], | 861 'math-*': [SKIP], |
| 853 'unicode-test': [SKIP], | 862 'unicode-test': [SKIP], |
| 854 'whitespaces': [SKIP], | 863 'whitespaces': [SKIP], |
| 855 }], # variant == asm_wasm | 864 }], # variant == asm_wasm |
| 856 | 865 |
| 857 ] | 866 ] |
| OLD | NEW |