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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 # till it is optimized. So test timeouts. | 802 # till it is optimized. So test timeouts. |
803 'array-literal-transitions': [SKIP], | 803 'array-literal-transitions': [SKIP], |
804 | 804 |
805 # TODO(mythria, 4680): Relate to GC and ignition holding references to | 805 # TODO(mythria, 4680): Relate to GC and ignition holding references to |
806 # objects. | 806 # objects. |
807 'es6/mirror-collections': [FAIL], | 807 'es6/mirror-collections': [FAIL], |
808 | 808 |
809 # TODO(mythria, 4680): line numbers in eval test. Coloumn number is | 809 # TODO(mythria, 4680): line numbers in eval test. Coloumn number is |
810 # incorrect. | 810 # incorrect. |
811 'regress/regress-crbug-109362': [FAIL], | 811 'regress/regress-crbug-109362': [FAIL], |
812 | |
813 # TODO(mythria, 4680): possibly problem with line numbers. | |
814 'es6/regress/regress-468661': [FAIL], | |
815 | |
816 }], # ignition == True | 812 }], # ignition == True |
817 | 813 |
818 ['ignition == True and arch == arm64', { | 814 ['ignition == True and arch == arm64', { |
819 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 815 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
820 'asm/construct-double': [SKIP], | 816 'asm/construct-double': [SKIP], |
821 'compiler/osr-one': [SKIP], | 817 'compiler/osr-one': [SKIP], |
822 'compiler/osr-two': [SKIP], | 818 'compiler/osr-two': [SKIP], |
823 }], # ignition == True and arch == arm64 | 819 }], # ignition == True and arch == arm64 |
824 | 820 |
825 ['ignition == True and arch == arm', { | 821 ['ignition == True and arch == arm', { |
826 # TODO(rmcilroy,4680): Arm specific timeouts. | 822 # TODO(rmcilroy,4680): Arm specific timeouts. |
827 'compiler/osr-one': [SKIP], | 823 'compiler/osr-one': [SKIP], |
828 'compiler/osr-two': [SKIP], | 824 'compiler/osr-two': [SKIP], |
829 'regress/regress-1257': [SKIP], | 825 'regress/regress-1257': [SKIP], |
830 }], # ignition == True and arch == arm | 826 }], # ignition == True and arch == arm |
831 | 827 |
832 ############################################################################## | 828 ############################################################################## |
833 ['gcov_coverage', { | 829 ['gcov_coverage', { |
834 # Tests taking too long. | 830 # Tests taking too long. |
835 'array-functions-prototype-misc': [SKIP], | 831 'array-functions-prototype-misc': [SKIP], |
836 | 832 |
837 # Stack overflow. | 833 # Stack overflow. |
838 'big-array-literal': [SKIP], | 834 'big-array-literal': [SKIP], |
839 }], # 'gcov_coverage' | 835 }], # 'gcov_coverage' |
840 | 836 |
841 ] | 837 ] |
OLD | NEW |