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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 # TODO(mythria, 4764): lack of osr support. | 787 # TODO(mythria, 4764): lack of osr support. |
788 'regress/regress-2618': [FAIL], | 788 'regress/regress-2618': [FAIL], |
789 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop | 789 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop |
790 # till it is optimized. So test timeouts. | 790 # till it is optimized. So test timeouts. |
791 'array-literal-transitions': [SKIP], | 791 'array-literal-transitions': [SKIP], |
792 | 792 |
793 # TODO(mythria, 4680): Relate to GC and ignition holding references to | 793 # TODO(mythria, 4680): Relate to GC and ignition holding references to |
794 # objects. | 794 # objects. |
795 'es6/mirror-collections': [FAIL], | 795 'es6/mirror-collections': [FAIL], |
796 | 796 |
797 # TODO(mythria, 4904): Parser bug. It creates incorrectly nested scopes | |
798 # for do expressions in arrow functions. | |
799 'harmony/regress/regress-4658': [FAIL, ['mode == release and dcheck_always_on
== False', PASS],], | |
800 | |
801 # TODO(rmcilroy, 4680): Script throws RangeError as expected, but does so duri
ng | 797 # TODO(rmcilroy, 4680): Script throws RangeError as expected, but does so duri
ng |
802 # eager compile of the whole script instead of during lazy compile of the func
tion | 798 # eager compile of the whole script instead of during lazy compile of the func
tion |
803 # f(), so we can't catch the exception in the try/catch. Skip because on some | 799 # f(), so we can't catch the exception in the try/catch. Skip because on some |
804 # platforms the stack limit is different and the exception doesn't fire. | 800 # platforms the stack limit is different and the exception doesn't fire. |
805 'regress/regress-crbug-589472': [SKIP], | 801 'regress/regress-crbug-589472': [SKIP], |
806 | 802 |
807 # Debugger test cases that pass with ignition, but not full-codegen. | 803 # Debugger test cases that pass with ignition, but not full-codegen. |
808 # These differences between full-codegen and ignition are deliberate. | 804 # These differences between full-codegen and ignition are deliberate. |
809 'ignition/elided-instruction-no-ignition': [FAIL], | 805 'ignition/elided-instruction-no-ignition': [FAIL], |
810 | 806 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 ############################################################################## | 854 ############################################################################## |
859 ['gcov_coverage', { | 855 ['gcov_coverage', { |
860 # Tests taking too long. | 856 # Tests taking too long. |
861 'array-functions-prototype-misc': [SKIP], | 857 'array-functions-prototype-misc': [SKIP], |
862 | 858 |
863 # Stack overflow. | 859 # Stack overflow. |
864 'big-array-literal': [SKIP], | 860 'big-array-literal': [SKIP], |
865 }], # 'gcov_coverage' | 861 }], # 'gcov_coverage' |
866 | 862 |
867 ] | 863 ] |
OLD | NEW |