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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 # objects. | 800 # objects. |
801 'es6/mirror-collections': [FAIL], | 801 'es6/mirror-collections': [FAIL], |
802 | 802 |
803 # TODO(mythria, 4680): line numbers in eval test. Coloumn number is | 803 # TODO(mythria, 4680): line numbers in eval test. Coloumn number is |
804 # incorrect. | 804 # incorrect. |
805 'regress/regress-crbug-109362': [FAIL], | 805 'regress/regress-crbug-109362': [FAIL], |
806 | 806 |
807 # TODO(mythria, 4680): possibly problem with line numbers. | 807 # TODO(mythria, 4680): possibly problem with line numbers. |
808 'es6/regress/regress-468661': [FAIL], | 808 'es6/regress/regress-468661': [FAIL], |
809 | 809 |
| 810 # Debugger test cases that pass with ignition, but not full-codegen. |
| 811 # These differences between full-codegen and ignition are deliberate. |
| 812 'ignition/elided-instruction-no-ignition': [FAIL], |
810 }], # ignition == True | 813 }], # ignition == True |
811 | 814 |
812 ['ignition == True and arch == arm64', { | 815 ['ignition == True and arch == arm64', { |
813 # TODO(rmcilroy,4680): Arm64 specific timeouts. | 816 # TODO(rmcilroy,4680): Arm64 specific timeouts. |
814 'asm/construct-double': [SKIP], | 817 'asm/construct-double': [SKIP], |
815 'compiler/osr-one': [SKIP], | 818 'compiler/osr-one': [SKIP], |
816 'compiler/osr-two': [SKIP], | 819 'compiler/osr-two': [SKIP], |
817 }], # ignition == True and arch == arm64 | 820 }], # ignition == True and arch == arm64 |
818 | 821 |
819 ['ignition == True and arch == arm', { | 822 ['ignition == True and arch == arm', { |
820 # TODO(rmcilroy,4680): Arm specific timeouts. | 823 # TODO(rmcilroy,4680): Arm specific timeouts. |
821 'compiler/osr-one': [SKIP], | 824 'compiler/osr-one': [SKIP], |
822 'compiler/osr-two': [SKIP], | 825 'compiler/osr-two': [SKIP], |
823 'regress/regress-1257': [SKIP], | 826 'regress/regress-1257': [SKIP], |
824 }], # ignition == True and arch == arm | 827 }], # ignition == True and arch == arm |
825 | 828 |
| 829 ['ignition == False', { |
| 830 # Debugger test cases that pass with full-codegen, but not ignition. |
| 831 # These differences between full-codegen and ignition are deliberate. |
| 832 'ignition/elided-instruction': [FAIL], |
| 833 }], # ignition == False |
| 834 |
826 ############################################################################## | 835 ############################################################################## |
827 ['gcov_coverage', { | 836 ['gcov_coverage', { |
828 # Tests taking too long. | 837 # Tests taking too long. |
829 'array-functions-prototype-misc': [SKIP], | 838 'array-functions-prototype-misc': [SKIP], |
830 | 839 |
831 # Stack overflow. | 840 # Stack overflow. |
832 'big-array-literal': [SKIP], | 841 'big-array-literal': [SKIP], |
833 }], # 'gcov_coverage' | 842 }], # 'gcov_coverage' |
834 | 843 |
835 ] | 844 ] |
OLD | NEW |