| 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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 'array-constructor-feedback': [SKIP], | 560 'array-constructor-feedback': [SKIP], |
| 561 | 561 |
| 562 # Deopting uses just enough memory to make this one OOM. | 562 # Deopting uses just enough memory to make this one OOM. |
| 563 'regress/regress-3976': [SKIP], | 563 'regress/regress-3976': [SKIP], |
| 564 | 564 |
| 565 # Deopt every n garbage collections collides with deopt every n times. | 565 # Deopt every n garbage collections collides with deopt every n times. |
| 566 'regress/regress-2653': [SKIP], | 566 'regress/regress-2653': [SKIP], |
| 567 | 567 |
| 568 # Too slow. | 568 # Too slow. |
| 569 'es6/tail-call-megatest*': [SKIP], | 569 'es6/tail-call-megatest*': [SKIP], |
| 570 |
| 571 # Ongoing implementation of modules. |
| 572 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 |
| 573 # The deopt fuzzer currently does not respect the 'variant != ignition' rule |
| 574 # further down in this file, so we have to duplicate this here. |
| 575 # https://bugs.chromium.org/p/v8/issues/detail?id=5374 |
| 576 'modules-*': [SKIP], |
| 570 }], # 'deopt_fuzzer == True' | 577 }], # 'deopt_fuzzer == True' |
| 571 | 578 |
| 572 ############################################################################## | 579 ############################################################################## |
| 573 ['predictable == True', { | 580 ['predictable == True', { |
| 574 | 581 |
| 575 # Skip tests that are known to be non-deterministic. | 582 # Skip tests that are known to be non-deterministic. |
| 576 'd8-worker-sharedarraybuffer': [SKIP], | 583 'd8-worker-sharedarraybuffer': [SKIP], |
| 577 'd8-os': [SKIP], | 584 'd8-os': [SKIP], |
| 578 }], # 'predictable == True' | 585 }], # 'predictable == True' |
| 579 | 586 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 'compiler/osr-big': [SKIP], | 805 'compiler/osr-big': [SKIP], |
| 799 'compiler/osr-nested': [SKIP], | 806 'compiler/osr-nested': [SKIP], |
| 800 'regress/regress-298269': [SKIP], | 807 'regress/regress-298269': [SKIP], |
| 801 'regress/regress-crbug-319860': [SKIP], | 808 'regress/regress-crbug-319860': [SKIP], |
| 802 'regress/regress-deep-proto': [SKIP], | 809 'regress/regress-deep-proto': [SKIP], |
| 803 'try': [SKIP], | 810 'try': [SKIP], |
| 804 # Too slow for interpreter and msan. | 811 # Too slow for interpreter and msan. |
| 805 'es6/tail-call-megatest*': [SKIP], | 812 'es6/tail-call-megatest*': [SKIP], |
| 806 }], # variant == ignition_turbofan and msan | 813 }], # variant == ignition_turbofan and msan |
| 807 | 814 |
| 815 ['variant != ignition', { |
| 816 # Ongoing implementation of modules. |
| 817 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 |
| 818 'modules-*': [SKIP], |
| 819 }], # variants != ignition |
| 820 |
| 808 ############################################################################## | 821 ############################################################################## |
| 809 ['gcov_coverage', { | 822 ['gcov_coverage', { |
| 810 # Tests taking too long. | 823 # Tests taking too long. |
| 811 'array-functions-prototype-misc': [SKIP], | 824 'array-functions-prototype-misc': [SKIP], |
| 812 | 825 |
| 813 # Stack overflow. | 826 # Stack overflow. |
| 814 'big-array-literal': [SKIP], | 827 'big-array-literal': [SKIP], |
| 815 }], # 'gcov_coverage' | 828 }], # 'gcov_coverage' |
| 816 | 829 |
| 817 ] | 830 ] |
| OLD | NEW |