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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
813 }], # 'predictable == True' | 813 }], # 'predictable == True' |
814 | 814 |
815 ############################################################################## | 815 ############################################################################## |
816 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 816 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
817 | 817 |
818 # take too long with the simulator. | 818 # take too long with the simulator. |
819 'regress/regress-1132': [SKIP], | 819 'regress/regress-1132': [SKIP], |
820 }], # 'arch == ppc and simulator_run == True' | 820 }], # 'arch == ppc and simulator_run == True' |
821 | 821 |
822 ############################################################################## | 822 ############################################################################## |
| 823 ['arch == ppc64', { |
| 824 |
| 825 # stack overflow |
| 826 'big-array-literal': [SKIP], |
| 827 }], # 'arch == ppc64' |
| 828 |
| 829 ############################################################################## |
823 ['ignition or ignition_turbofan', { | 830 ['ignition or ignition_turbofan', { |
824 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. | 831 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. |
825 'array-literal-feedback': [FAIL], | 832 'array-literal-feedback': [FAIL], |
826 'regress/regress-4121': [FAIL], | 833 'regress/regress-4121': [FAIL], |
827 | 834 |
828 # TODO(mythria, 4764): lack of osr support. | 835 # TODO(mythria, 4764): lack of osr support. |
829 'regress/regress-2618': [FAIL], | 836 'regress/regress-2618': [FAIL], |
830 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop | 837 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop |
831 # till it is optimized. So test timeouts. | 838 # till it is optimized. So test timeouts. |
832 'array-literal-transitions': [SKIP], | 839 'array-literal-transitions': [SKIP], |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
882 ############################################################################## | 889 ############################################################################## |
883 ['gcov_coverage', { | 890 ['gcov_coverage', { |
884 # Tests taking too long. | 891 # Tests taking too long. |
885 'array-functions-prototype-misc': [SKIP], | 892 'array-functions-prototype-misc': [SKIP], |
886 | 893 |
887 # Stack overflow. | 894 # Stack overflow. |
888 'big-array-literal': [SKIP], | 895 'big-array-literal': [SKIP], |
889 }], # 'gcov_coverage' | 896 }], # 'gcov_coverage' |
890 | 897 |
891 ] | 898 ] |
OLD | NEW |