| 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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 'ignition/*': [SKIP], | 672 'ignition/*': [SKIP], |
| 673 'lithium/*': [SKIP], | 673 'lithium/*': [SKIP], |
| 674 'third_party/*': [SKIP], | 674 'third_party/*': [SKIP], |
| 675 'tools/*': [SKIP], | 675 'tools/*': [SKIP], |
| 676 'apply': [SKIP], | 676 'apply': [SKIP], |
| 677 'math-*': [SKIP], | 677 'math-*': [SKIP], |
| 678 'unicode-test': [SKIP], | 678 'unicode-test': [SKIP], |
| 679 'whitespaces': [SKIP], | 679 'whitespaces': [SKIP], |
| 680 }], # variant == asm_wasm | 680 }], # variant == asm_wasm |
| 681 | 681 |
| 682 ['variant == wasm_traps', { |
| 683 # Skip stuff uninteresting for wasm traps |
| 684 'bugs/*': [SKIP], |
| 685 'compiler/*': [SKIP], |
| 686 'es6/*': [SKIP], |
| 687 'es7/*': [SKIP], |
| 688 'es8/*': [SKIP], |
| 689 'harmony/*': [SKIP], |
| 690 'ignition/*': [SKIP], |
| 691 'lithium/*': [SKIP], |
| 692 'third_party/*': [SKIP], |
| 693 'tools/*': [SKIP], |
| 694 'apply': [SKIP], |
| 695 'math-*': [SKIP], |
| 696 'unicode-test': [SKIP], |
| 697 'whitespaces': [SKIP], |
| 698 }], # variant == wasm_traps |
| 699 |
| 682 ] | 700 ] |
| OLD | NEW |