| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 'regress/regress-2653': [SKIP], | 533 'regress/regress-2653': [SKIP], |
| 534 | 534 |
| 535 # Too slow. | 535 # Too slow. |
| 536 'es6/tail-call-megatest*': [SKIP], | 536 'es6/tail-call-megatest*': [SKIP], |
| 537 | 537 |
| 538 # Forced optimisation path tests. | 538 # Forced optimisation path tests. |
| 539 'shared-function-tier-up-default': [SKIP], | 539 'shared-function-tier-up-default': [SKIP], |
| 540 'shared-function-tier-up-ignition': [SKIP], | 540 'shared-function-tier-up-ignition': [SKIP], |
| 541 'shared-function-tier-up-turbo': [SKIP], | 541 'shared-function-tier-up-turbo': [SKIP], |
| 542 | 542 |
| 543 # Ongoing implementation of modules. | |
| 544 # https://bugs.chromium.org/p/v8/issues/detail?id=1569 | |
| 545 # The deopt fuzzer currently does not respect the 'variant != ignition' rule | |
| 546 # further down in this file, so we have to duplicate this here. | |
| 547 # https://bugs.chromium.org/p/v8/issues/detail?id=5374 | |
| 548 'modules-*': [SKIP], | |
| 549 | |
| 550 # Fails deopt_fuzzer due to --deopt_every_n_times or | 543 # Fails deopt_fuzzer due to --deopt_every_n_times or |
| 551 # deopt_every_n_garbage_collections | 544 # deopt_every_n_garbage_collections |
| 552 'es6/array-iterator-turbo': [SKIP] | 545 'es6/array-iterator-turbo': [SKIP] |
| 553 }], # 'deopt_fuzzer == True' | 546 }], # 'deopt_fuzzer == True' |
| 554 | 547 |
| 555 ############################################################################## | 548 ############################################################################## |
| 556 ['predictable == True', { | 549 ['predictable == True', { |
| 557 | 550 |
| 558 # Skip tests that are known to be non-deterministic. | 551 # Skip tests that are known to be non-deterministic. |
| 559 'd8-worker-sharedarraybuffer': [SKIP], | 552 'd8-worker-sharedarraybuffer': [SKIP], |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 'lithium/*': [SKIP], | 661 'lithium/*': [SKIP], |
| 669 'third_party/*': [SKIP], | 662 'third_party/*': [SKIP], |
| 670 'tools/*': [SKIP], | 663 'tools/*': [SKIP], |
| 671 'apply': [SKIP], | 664 'apply': [SKIP], |
| 672 'math-*': [SKIP], | 665 'math-*': [SKIP], |
| 673 'unicode-test': [SKIP], | 666 'unicode-test': [SKIP], |
| 674 'whitespaces': [SKIP], | 667 'whitespaces': [SKIP], |
| 675 }], # variant == wasm_traps | 668 }], # variant == wasm_traps |
| 676 | 669 |
| 677 ] | 670 ] |
| OLD | NEW |