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