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 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 | 709 |
710 # Lead to OOM: | 710 # Lead to OOM: |
711 'string-oom-*': [SKIP], | 711 'string-oom-*': [SKIP], |
712 | 712 |
713 # Crashes. | 713 # Crashes. |
714 'harmony/private': [SKIP], | 714 'harmony/private': [SKIP], |
715 'harmony/symbols': [SKIP], | 715 'harmony/symbols': [SKIP], |
716 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 716 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
717 | 717 |
718 ############################################################################## | 718 ############################################################################## |
| 719 ['arch == s390 or arch == s390x', { |
| 720 |
| 721 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 722 'debug-liveedit-check-stack': [SKIP], |
| 723 'debug-liveedit-stack-padding': [SKIP], |
| 724 'debug-liveedit-restart-frame': [SKIP], |
| 725 'debug-liveedit-double-call': [SKIP], |
| 726 }], # 'arch == s390 or arch == s390x' |
| 727 |
| 728 ############################################################################## |
719 ['deopt_fuzzer == True', { | 729 ['deopt_fuzzer == True', { |
720 | 730 |
721 # Skip tests that are not suitable for deoptimization fuzzing. | 731 # Skip tests that are not suitable for deoptimization fuzzing. |
722 'assert-opt-and-deopt': [SKIP], | 732 'assert-opt-and-deopt': [SKIP], |
723 'never-optimize': [SKIP], | 733 'never-optimize': [SKIP], |
724 'regress/regress-2185-2': [SKIP], | 734 'regress/regress-2185-2': [SKIP], |
725 'readonly': [SKIP], | 735 'readonly': [SKIP], |
726 'array-feedback': [SKIP], | 736 'array-feedback': [SKIP], |
727 | 737 |
728 # Bounds check triggers forced deopt for array constructors. | 738 # Bounds check triggers forced deopt for array constructors. |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 ############################################################################## | 894 ############################################################################## |
885 ['gcov_coverage', { | 895 ['gcov_coverage', { |
886 # Tests taking too long. | 896 # Tests taking too long. |
887 'array-functions-prototype-misc': [SKIP], | 897 'array-functions-prototype-misc': [SKIP], |
888 | 898 |
889 # Stack overflow. | 899 # Stack overflow. |
890 'big-array-literal': [SKIP], | 900 'big-array-literal': [SKIP], |
891 }], # 'gcov_coverage' | 901 }], # 'gcov_coverage' |
892 | 902 |
893 ] | 903 ] |
OLD | NEW |