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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 'array-feedback': [SKIP], | 728 'array-feedback': [SKIP], |
729 | 729 |
730 # Bounds check triggers forced deopt for array constructors. | 730 # Bounds check triggers forced deopt for array constructors. |
731 'array-constructor-feedback': [SKIP], | 731 'array-constructor-feedback': [SKIP], |
732 | 732 |
733 # Deopting uses just enough memory to make this one OOM. | 733 # Deopting uses just enough memory to make this one OOM. |
734 'regress/regress-3976': [SKIP], | 734 'regress/regress-3976': [SKIP], |
735 | 735 |
736 # Deopt every n garbage collections collides with deopt every n times. | 736 # Deopt every n garbage collections collides with deopt every n times. |
737 'regress/regress-2653': [SKIP], | 737 'regress/regress-2653': [SKIP], |
| 738 |
| 739 # Too slow. |
| 740 'es6/tail-call-megatest*': [SKIP], |
738 }], # 'deopt_fuzzer == True' | 741 }], # 'deopt_fuzzer == True' |
739 | 742 |
740 ############################################################################## | 743 ############################################################################## |
741 ['predictable == True', { | 744 ['predictable == True', { |
742 | 745 |
743 # Skip tests that are known to be non-deterministic. | 746 # Skip tests that are known to be non-deterministic. |
744 'd8-worker-sharedarraybuffer': [SKIP], | 747 'd8-worker-sharedarraybuffer': [SKIP], |
745 'd8-os': [SKIP], | 748 'd8-os': [SKIP], |
746 }], # 'predictable == True' | 749 }], # 'predictable == True' |
747 | 750 |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 ############################################################################## | 875 ############################################################################## |
873 ['gcov_coverage', { | 876 ['gcov_coverage', { |
874 # Tests taking too long. | 877 # Tests taking too long. |
875 'array-functions-prototype-misc': [SKIP], | 878 'array-functions-prototype-misc': [SKIP], |
876 | 879 |
877 # Stack overflow. | 880 # Stack overflow. |
878 'big-array-literal': [SKIP], | 881 'big-array-literal': [SKIP], |
879 }], # 'gcov_coverage' | 882 }], # 'gcov_coverage' |
880 | 883 |
881 ] | 884 ] |
OLD | NEW |