| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 # Tests verifying CHECK and ASSERT. | 123 # Tests verifying CHECK and ASSERT. |
| 124 'verify-check-false': [FAIL, NO_VARIANTS], | 124 'verify-check-false': [FAIL, NO_VARIANTS], |
| 125 'verify-assert-false': [NO_VARIANTS, ['mode == release and dcheck_always_on ==
False', PASS], ['mode == debug or dcheck_always_on == True', FAIL]], | 125 'verify-assert-false': [NO_VARIANTS, ['mode == release and dcheck_always_on ==
False', PASS], ['mode == debug or dcheck_always_on == True', FAIL]], |
| 126 | 126 |
| 127 ############################################################################## | 127 ############################################################################## |
| 128 # Tests with different versions for release and debug. | 128 # Tests with different versions for release and debug. |
| 129 'compiler/alloc-number': [PASS, ['mode == debug', SKIP]], | 129 'compiler/alloc-number': [PASS, ['mode == debug', SKIP]], |
| 130 'compiler/alloc-number-debug': [PASS, ['mode == release', SKIP]], | 130 'compiler/alloc-number-debug': [PASS, ['mode == release', SKIP]], |
| 131 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], | 131 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], |
| 132 | 132 |
| 133 # BUG(336820). TODO(bmeurer): Investigate. | |
| 134 'regress/regress-336820': [PASS, FAIL], | |
| 135 | |
| 136 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for | 133 # BUG(v8:2989). PASS/FAIL on linux32 because crankshaft is turned off for |
| 137 # nosse2. Also for arm novfp3. | 134 # nosse2. Also for arm novfp3. |
| 138 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], | 135 'regress/regress-2989': [FAIL, NO_VARIANTS, ['system == linux and arch == x87
or arch == arm and simulator == True', PASS]], |
| 139 | 136 |
| 140 # This test variant makes only sense on arm. | 137 # This test variant makes only sense on arm. |
| 141 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], | 138 'math-floor-of-div-nosudiv': [PASS, SLOW, ['arch not in [arm, arm64, android_a
rm, android_arm64]', SKIP]], |
| 142 | 139 |
| 143 # Too slow for slow variants. | 140 # Too slow for slow variants. |
| 144 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], | 141 'asm/embenchen/*': [PASS, SLOW, FAST_VARIANTS], |
| 145 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], | 142 'asm/poppler/*': [PASS, SLOW, FAST_VARIANTS], |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 'lithium/*': [SKIP], | 685 'lithium/*': [SKIP], |
| 689 'third_party/*': [SKIP], | 686 'third_party/*': [SKIP], |
| 690 'tools/*': [SKIP], | 687 'tools/*': [SKIP], |
| 691 'apply': [SKIP], | 688 'apply': [SKIP], |
| 692 'math-*': [SKIP], | 689 'math-*': [SKIP], |
| 693 'unicode-test': [SKIP], | 690 'unicode-test': [SKIP], |
| 694 'whitespaces': [SKIP], | 691 'whitespaces': [SKIP], |
| 695 }], # variant == wasm_traps | 692 }], # variant == wasm_traps |
| 696 | 693 |
| 697 ] | 694 ] |
| OLD | NEW |