| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). | 169 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). |
| 170 'unicodelctest': [PASS, NO_VARIANTS], | 170 'unicodelctest': [PASS, NO_VARIANTS], |
| 171 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 171 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
| 172 | 172 |
| 173 # TODO(vogelheim): big-object-literal exceeds the stack in debug builds, | 173 # TODO(vogelheim): big-object-literal exceeds the stack in debug builds, |
| 174 # which makes the test useless. | 174 # which makes the test useless. |
| 175 'big-object-literal': [PASS, ['mode == debug', SKIP]], | 175 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
| 176 | 176 |
| 177 # BUG(v8:5807): Flaky data race. | 177 # BUG(v8:5807): Flaky data race. |
| 178 'wasm/embenchen/fannkuch': [PASS, ['tsan', SKIP]], | 178 'wasm/embenchen/fannkuch': [PASS, ['tsan', SKIP]], |
| 179 |
| 180 # BUG(v8:5778): These fail with --future, which we are about to turn on. |
| 181 # Investigate. |
| 182 'regress/regress-105': [SKIP], |
| 183 |
| 179 }], # ALWAYS | 184 }], # ALWAYS |
| 180 | 185 |
| 181 ['novfp3 == True', { | 186 ['novfp3 == True', { |
| 182 'asm/embenchen/box2d': [SKIP], | 187 'asm/embenchen/box2d': [SKIP], |
| 183 'asm/embenchen/zlib': [SKIP], | 188 'asm/embenchen/zlib': [SKIP], |
| 184 'asm/embenchen/memops': [SKIP], | 189 'asm/embenchen/memops': [SKIP], |
| 185 'asm/embenchen/lua_binarytrees': [SKIP], | 190 'asm/embenchen/lua_binarytrees': [SKIP], |
| 186 }], # novfp3 == True | 191 }], # novfp3 == True |
| 187 | 192 |
| 188 ############################################################################## | 193 ############################################################################## |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 'lithium/*': [SKIP], | 656 'lithium/*': [SKIP], |
| 652 'third_party/*': [SKIP], | 657 'third_party/*': [SKIP], |
| 653 'tools/*': [SKIP], | 658 'tools/*': [SKIP], |
| 654 'apply': [SKIP], | 659 'apply': [SKIP], |
| 655 'math-*': [SKIP], | 660 'math-*': [SKIP], |
| 656 'unicode-test': [SKIP], | 661 'unicode-test': [SKIP], |
| 657 'whitespaces': [SKIP], | 662 'whitespaces': [SKIP], |
| 658 }], # variant == wasm_traps | 663 }], # variant == wasm_traps |
| 659 | 664 |
| 660 ] | 665 ] |
| OLD | NEW |