| 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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 'ignition/elided-instruction': [SKIP], | 861 'ignition/elided-instruction': [SKIP], |
| 862 'regress/regress-269': [SKIP], | 862 'regress/regress-269': [SKIP], |
| 863 }], # ignition == True and gc_stress == True | 863 }], # ignition == True and gc_stress == True |
| 864 | 864 |
| 865 ['ignition == False', { | 865 ['ignition == False', { |
| 866 # Debugger test cases that pass with full-codegen, but not ignition. | 866 # Debugger test cases that pass with full-codegen, but not ignition. |
| 867 # These differences between full-codegen and ignition are deliberate. | 867 # These differences between full-codegen and ignition are deliberate. |
| 868 'ignition/elided-instruction': [FAIL], | 868 'ignition/elided-instruction': [FAIL], |
| 869 }], # ignition == False | 869 }], # ignition == False |
| 870 | 870 |
| 871 ['ignition == True and system == windows and no_snap', { | |
| 872 # TODO(rmcilroy): Fail with nosnap and shared libraries. | |
| 873 'es6/array-from': [FAIL], | |
| 874 'es6/classes-subclass-builtins': [FAIL], | |
| 875 'es6/computed-property-names-classes': [FAIL], | |
| 876 'es6/computed-property-names-object-literals-methods': [FAIL], | |
| 877 'es6/debug-stepin-generators': [FAIL], | |
| 878 'es6/destructuring': [FAIL], | |
| 879 'es6/destructuring-assignment': [FAIL], | |
| 880 'es6/generators-iteration': [FAIL], | |
| 881 'es6/generators-mirror': [FAIL], | |
| 882 'es6/generators-parsing': [FAIL], | |
| 883 'es6/generators-poisoned-properties': [FAIL], | |
| 884 'es6/generators-relocation': [FAIL], | |
| 885 'es6/generators-states': [FAIL], | |
| 886 'es6/iteration-semantics': [FAIL], | |
| 887 'es6/object-literals-method': [FAIL], | |
| 888 'es6/object-literals-super': [FAIL], | |
| 889 'es6/promises': [FAIL], | |
| 890 'es6/regress/regress-2681': [FAIL], | |
| 891 'es6/regress/regress-2691': [FAIL], | |
| 892 'es6/regress/regress-3280': [FAIL], | |
| 893 'es6/spread-array': [FAIL], | |
| 894 'es6/spread-call': [FAIL], | |
| 895 'es6/typedarray': [FAIL], | |
| 896 'es6/typedarray-from': [FAIL], | |
| 897 'harmony/function-sent': [FAIL], | |
| 898 'harmony/generators': [FAIL], | |
| 899 'harmony/iterator-close': [FAIL], | |
| 900 'harmony/regress/regress-4482': [FAIL], | |
| 901 'messages': [FAIL], | |
| 902 'regress-3225': [FAIL], | |
| 903 }], # ignition == True and system == windows and no_snap | |
| 904 | |
| 905 ############################################################################## | 871 ############################################################################## |
| 906 ['gcov_coverage', { | 872 ['gcov_coverage', { |
| 907 # Tests taking too long. | 873 # Tests taking too long. |
| 908 'array-functions-prototype-misc': [SKIP], | 874 'array-functions-prototype-misc': [SKIP], |
| 909 | 875 |
| 910 # Stack overflow. | 876 # Stack overflow. |
| 911 'big-array-literal': [SKIP], | 877 'big-array-literal': [SKIP], |
| 912 }], # 'gcov_coverage' | 878 }], # 'gcov_coverage' |
| 913 | 879 |
| 914 ] | 880 ] |
| OLD | NEW |