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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 'debug-liveedit-patch-positions': [FAIL], | 776 'debug-liveedit-patch-positions': [FAIL], |
777 'debug-liveedit-stepin': [FAIL], | 777 'debug-liveedit-stepin': [FAIL], |
778 'debug-liveedit-newsource': [FAIL], | 778 'debug-liveedit-newsource': [FAIL], |
779 'debug-liveedit-stack-padding': [FAIL], | 779 'debug-liveedit-stack-padding': [FAIL], |
780 'debug-liveedit-breakpoints': [FAIL], | 780 'debug-liveedit-breakpoints': [FAIL], |
781 'es6/debug-liveedit-new-target-1': [FAIL], | 781 'es6/debug-liveedit-new-target-1': [FAIL], |
782 'es6/debug-liveedit-new-target-2': [FAIL], | 782 'es6/debug-liveedit-new-target-2': [FAIL], |
783 'es6/debug-liveedit-new-target-3': [FAIL], | 783 'es6/debug-liveedit-new-target-3': [FAIL], |
784 'es6/generators-debug-liveedit': [FAIL], | 784 'es6/generators-debug-liveedit': [FAIL], |
785 | 785 |
786 # TODO(yangguo/rmcilroy,4690): Related to Debugger. Goes into a loop | |
787 # in function: Debug::FindSharedFunctionInfoInScript and times out. | |
788 'regress/regress-crbug-517592': [SKIP], | |
789 'regress/regress-1853': [SKIP], | |
790 'regress/regress-crbug-424142': [SKIP], | |
791 | |
792 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. | 786 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. |
793 'array-literal-feedback': [FAIL], | 787 'array-literal-feedback': [FAIL], |
794 'regress/regress-4121': [FAIL], | 788 'regress/regress-4121': [FAIL], |
795 | 789 |
796 # TODO(mythria, 4764): lack of osr support. | 790 # TODO(mythria, 4764): lack of osr support. |
797 'regress/regress-2618': [FAIL], | 791 'regress/regress-2618': [FAIL], |
798 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop | 792 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop |
799 # till it is optimized. So test timeouts. | 793 # till it is optimized. So test timeouts. |
800 'array-literal-transitions': [SKIP], | 794 'array-literal-transitions': [SKIP], |
801 | 795 |
802 # TODO(mythria, 4680): Relate to GC and ignition holding references to | 796 # TODO(mythria, 4680): Relate to GC and ignition holding references to |
803 # objects. | 797 # objects. |
804 'es6/mirror-collections': [FAIL], | 798 'es6/mirror-collections': [FAIL], |
805 | 799 |
806 # TODO(mythria, 4680): line numbers in eval test. Coloumn number is | 800 # TODO(mythria, 4680): line numbers in eval test. Column number is |
807 # incorrect. | 801 # incorrect. |
808 'regress/regress-crbug-109362': [FAIL], | 802 'regress/regress-crbug-109362': [FAIL], |
809 | 803 |
810 # TODO(mythria, 4680): possibly problem with line numbers. | 804 # TODO(mythria, 4680): possibly problem with line numbers. |
811 'es6/regress/regress-468661': [FAIL], | 805 'es6/regress/regress-468661': [FAIL], |
812 | 806 |
| 807 # TODO(mythria, 4680): Fails with context_register_count_ > 0 (0 vs. 0) when |
| 808 # trying to get a context register in BytecodeGenerator. |
| 809 'harmony/regress/regress-4658': [FAIL, ['mode == release and dcheck_always_on
== False', PASS],], |
| 810 |
| 811 # TODO(rmcilroy, 4680): Script throws RangeError as expected, but does so duri
ng |
| 812 # eager compile of the whole script instead of during lazy compile of the func
tion |
| 813 # f(), so we can't catch the exception in the try/catch. Skip because on some |
| 814 # platforms the stack limit is different and the exception doesn't fire. |
| 815 'regress/regress-crbug-589472': [SKIP], |
| 816 |
813 # Debugger test cases that pass with ignition, but not full-codegen. | 817 # Debugger test cases that pass with ignition, but not full-codegen. |
814 # These differences between full-codegen and ignition are deliberate. | 818 # These differences between full-codegen and ignition are deliberate. |
815 'ignition/elided-instruction-no-ignition': [FAIL], | 819 'ignition/elided-instruction-no-ignition': [FAIL], |
816 }], # ignition == True | 820 }], # ignition == True |
817 | 821 |
818 ['ignition == True and system == windows', { | 822 ['ignition == True and system == windows', { |
819 # TODO(rmcilroy,4680): Crash on windows nosnap shared. | 823 # TODO(rmcilroy,4680): Crash on windows nosnap shared. |
820 'regress/regress-crbug-352058': [PASS, ['no_snap == True', SKIP]], | 824 'regress/regress-crbug-352058': [PASS, ['no_snap == True', SKIP]], |
821 | 825 |
822 # TODO(rmcilroy,4680): Fails on win32 debug. | 826 # TODO(rmcilroy,4680): Fails on win32 debug. |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
867 ############################################################################## | 871 ############################################################################## |
868 ['gcov_coverage', { | 872 ['gcov_coverage', { |
869 # Tests taking too long. | 873 # Tests taking too long. |
870 'array-functions-prototype-misc': [SKIP], | 874 'array-functions-prototype-misc': [SKIP], |
871 | 875 |
872 # Stack overflow. | 876 # Stack overflow. |
873 'big-array-literal': [SKIP], | 877 'big-array-literal': [SKIP], |
874 }], # 'gcov_coverage' | 878 }], # 'gcov_coverage' |
875 | 879 |
876 ] | 880 ] |
OLD | NEW |