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