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