| 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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 'ignition/elided-instruction-no-ignition': [FAIL], | 814 'ignition/elided-instruction-no-ignition': [FAIL], |
| 815 | 815 |
| 816 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', SKIP]], | 816 'wasm/asm-wasm-f32': [PASS, ['arch in [arm64]', SKIP]], |
| 817 'wasm/asm-wasm-f64': [PASS, ['arch in [arm64]', SKIP]], | 817 'wasm/asm-wasm-f64': [PASS, ['arch in [arm64]', SKIP]], |
| 818 }], # ignition == True | 818 }], # ignition == True |
| 819 | 819 |
| 820 ['ignition == True and system == windows', { | 820 ['ignition == True and system == windows', { |
| 821 # TODO(rmcilroy,4680): Crash on windows nosnap shared. | 821 # TODO(rmcilroy,4680): Crash on windows nosnap shared. |
| 822 'regress/regress-crbug-352058': [PASS, ['no_snap == True', SKIP]], | 822 'regress/regress-crbug-352058': [PASS, ['no_snap == True', SKIP]], |
| 823 | 823 |
| 824 # TODO(513471): Attempting to optimize generator hits unreachable path. | |
| 825 'regress/regress-crbug-513471': [PASS, ['no_snap == True', SKIP]], | |
| 826 | |
| 827 # TODO(rmcilroy,4680): Fails on win32 debug. | 824 # TODO(rmcilroy,4680): Fails on win32 debug. |
| 828 'div-mod': [PASS, ['arch == ia32', SKIP]], | 825 'div-mod': [PASS, ['arch == ia32', SKIP]], |
| 829 }], # ignition == True and system == windows | 826 }], # ignition == True and system == windows |
| 830 | 827 |
| 831 ['ignition == True and arch == arm64', { | 828 ['ignition == True and arch == arm64', { |
| 832 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 829 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
| 833 'asm/construct-double': [SKIP], | 830 'asm/construct-double': [SKIP], |
| 834 'compiler/osr-one': [SKIP], | 831 'compiler/osr-one': [SKIP], |
| 835 'compiler/osr-two': [SKIP], | 832 'compiler/osr-two': [SKIP], |
| 836 'wasm/asm-wasm-i32': [SKIP], | 833 'wasm/asm-wasm-i32': [SKIP], |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 ############################################################################## | 905 ############################################################################## |
| 909 ['gcov_coverage', { | 906 ['gcov_coverage', { |
| 910 # Tests taking too long. | 907 # Tests taking too long. |
| 911 'array-functions-prototype-misc': [SKIP], | 908 'array-functions-prototype-misc': [SKIP], |
| 912 | 909 |
| 913 # Stack overflow. | 910 # Stack overflow. |
| 914 'big-array-literal': [SKIP], | 911 'big-array-literal': [SKIP], |
| 915 }], # 'gcov_coverage' | 912 }], # 'gcov_coverage' |
| 916 | 913 |
| 917 ] | 914 ] |
| OLD | NEW |