| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], | 155 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], |
| 156 # desugaring regexp property class relies on ICU. | 156 # desugaring regexp property class relies on ICU. |
| 157 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 157 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
| 158 | 158 |
| 159 # Allocates a large array buffer, which TSAN sometimes cannot handle. | 159 # Allocates a large array buffer, which TSAN sometimes cannot handle. |
| 160 'regress/regress-599717': [PASS, ['tsan', SKIP]], | 160 'regress/regress-599717': [PASS, ['tsan', SKIP]], |
| 161 | 161 |
| 162 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). | 162 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). |
| 163 'unicodelctest': [PASS, NO_VARIANTS], | 163 'unicodelctest': [PASS, NO_VARIANTS], |
| 164 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 164 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
| 165 |
| 166 # TODO(vogelheim): big-object-literal exceeds the stack in debug builds, |
| 167 # which makes the test useless. |
| 168 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
| 165 }], # ALWAYS | 169 }], # ALWAYS |
| 166 | 170 |
| 167 ['novfp3 == True', { | 171 ['novfp3 == True', { |
| 168 'asm/embenchen/box2d': [SKIP], | 172 'asm/embenchen/box2d': [SKIP], |
| 169 'asm/embenchen/zlib': [SKIP], | 173 'asm/embenchen/zlib': [SKIP], |
| 170 'asm/embenchen/memops': [SKIP], | 174 'asm/embenchen/memops': [SKIP], |
| 171 'asm/embenchen/lua_binarytrees': [SKIP], | 175 'asm/embenchen/lua_binarytrees': [SKIP], |
| 172 }], # novfp3 == True | 176 }], # novfp3 == True |
| 173 | 177 |
| 174 ############################################################################## | 178 ############################################################################## |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 'lithium/*': [SKIP], | 642 'lithium/*': [SKIP], |
| 639 'third_party/*': [SKIP], | 643 'third_party/*': [SKIP], |
| 640 'tools/*': [SKIP], | 644 'tools/*': [SKIP], |
| 641 'apply': [SKIP], | 645 'apply': [SKIP], |
| 642 'math-*': [SKIP], | 646 'math-*': [SKIP], |
| 643 'unicode-test': [SKIP], | 647 'unicode-test': [SKIP], |
| 644 'whitespaces': [SKIP], | 648 'whitespaces': [SKIP], |
| 645 }], # variant == wasm_traps | 649 }], # variant == wasm_traps |
| 646 | 650 |
| 647 ] | 651 ] |
| OLD | NEW |