| 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 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 }], # 'predictable == True' | 827 }], # 'predictable == True' |
| 828 | 828 |
| 829 ############################################################################## | 829 ############################################################################## |
| 830 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 830 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 831 | 831 |
| 832 # take too long with the simulator. | 832 # take too long with the simulator. |
| 833 'regress/regress-1132': [SKIP], | 833 'regress/regress-1132': [SKIP], |
| 834 }], # 'arch == ppc and simulator_run == True' | 834 }], # 'arch == ppc and simulator_run == True' |
| 835 | 835 |
| 836 ############################################################################## | 836 ############################################################################## |
| 837 ['arch == ppc64', { |
| 838 |
| 839 # stack overflow |
| 840 'big-array-literal': [SKIP], |
| 841 }], # 'arch == ppc64' |
| 842 |
| 843 ############################################################################## |
| 837 ['ignition or ignition_turbofan', { | 844 ['ignition or ignition_turbofan', { |
| 838 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. | 845 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. |
| 839 'array-literal-feedback': [FAIL], | 846 'array-literal-feedback': [FAIL], |
| 840 'regress/regress-4121': [FAIL], | 847 'regress/regress-4121': [FAIL], |
| 841 | 848 |
| 842 # TODO(mythria, 4764): lack of osr support. | 849 # TODO(mythria, 4764): lack of osr support. |
| 843 'regress/regress-2618': [FAIL], | 850 'regress/regress-2618': [FAIL], |
| 844 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop | 851 # TODO(mythria, 4764): lack of osr support. The tests waits in a loop |
| 845 # till it is optimized. So test timeouts. | 852 # till it is optimized. So test timeouts. |
| 846 'array-literal-transitions': [SKIP], | 853 'array-literal-transitions': [SKIP], |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 ############################################################################## | 898 ############################################################################## |
| 892 ['gcov_coverage', { | 899 ['gcov_coverage', { |
| 893 # Tests taking too long. | 900 # Tests taking too long. |
| 894 'array-functions-prototype-misc': [SKIP], | 901 'array-functions-prototype-misc': [SKIP], |
| 895 | 902 |
| 896 # Stack overflow. | 903 # Stack overflow. |
| 897 'big-array-literal': [SKIP], | 904 'big-array-literal': [SKIP], |
| 898 }], # 'gcov_coverage' | 905 }], # 'gcov_coverage' |
| 899 | 906 |
| 900 ] | 907 ] |
| OLD | NEW |