| 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 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 # Debugger test cases that pass with ignition, but not full-codegen. | 810 # Debugger test cases that pass with ignition, but not full-codegen. |
| 811 # These differences between full-codegen and ignition are deliberate. | 811 # These differences between full-codegen and ignition are deliberate. |
| 812 'ignition/elided-instruction-no-ignition': [FAIL], | 812 'ignition/elided-instruction-no-ignition': [FAIL], |
| 813 }], # ignition == True | 813 }], # ignition == True |
| 814 | 814 |
| 815 ['ignition == True and system == windows', { | 815 ['ignition == True and system == windows', { |
| 816 # TODO(rmcilroy,4680): Crash on windows nosnap shared. | 816 # TODO(rmcilroy,4680): Crash on windows nosnap shared. |
| 817 'regress/regress-crbug-352058': [PASS, ['no_snap == True', SKIP]], | 817 'regress/regress-crbug-352058': [PASS, ['no_snap == True', SKIP]], |
| 818 | 818 |
| 819 # TODO(rmcilroy,4680): Fails on win32 debug. | 819 # TODO(rmcilroy,4680): Fails on win32 debug. |
| 820 'div-mod': [PASS, ['arch == ia32 and mode == debug', FAIL]], | 820 'div-mod': [PASS, ['arch == ia32', SKIP]], |
| 821 }], # ignition == True and system == windows | 821 }], # ignition == True and system == windows |
| 822 | 822 |
| 823 ['ignition == True and arch == arm64', { | 823 ['ignition == True and arch == arm64', { |
| 824 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 824 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
| 825 'asm/construct-double': [SKIP], | 825 'asm/construct-double': [SKIP], |
| 826 'compiler/osr-one': [SKIP], | 826 'compiler/osr-one': [SKIP], |
| 827 'compiler/osr-two': [SKIP], | 827 'compiler/osr-two': [SKIP], |
| 828 }], # ignition == True and arch == arm64 | 828 }], # ignition == True and arch == arm64 |
| 829 | 829 |
| 830 ['ignition == True and arch == arm', { | 830 ['ignition == True and arch == arm', { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 ############################################################################## | 880 ############################################################################## |
| 881 ['gcov_coverage', { | 881 ['gcov_coverage', { |
| 882 # Tests taking too long. | 882 # Tests taking too long. |
| 883 'array-functions-prototype-misc': [SKIP], | 883 'array-functions-prototype-misc': [SKIP], |
| 884 | 884 |
| 885 # Stack overflow. | 885 # Stack overflow. |
| 886 'big-array-literal': [SKIP], | 886 'big-array-literal': [SKIP], |
| 887 }], # 'gcov_coverage' | 887 }], # 'gcov_coverage' |
| 888 | 888 |
| 889 ] | 889 ] |
| OLD | NEW |