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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 'wasm/asm-wasm-deopt': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mip
s64el]', SKIP]], | 170 'wasm/asm-wasm-deopt': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mip
s64el]', SKIP]], |
171 'wasm/asm-wasm-switch': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], | 171 'wasm/asm-wasm-switch': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], |
172 | 172 |
173 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 173 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
174 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 174 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
175 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], | 175 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], |
176 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], | 176 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], |
177 # desugaring regexp property class relies on ICU. | 177 # desugaring regexp property class relies on ICU. |
178 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 178 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
179 | 179 |
| 180 # Allocates a large array buffer, which TSAN sometimes cannot handle. |
| 181 'regress/regress-599717': [PASS, ['tsan', SKIP]], |
| 182 |
180 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). | 183 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). |
181 'unicodelctest': [PASS, NO_VARIANTS], | 184 'unicodelctest': [PASS, NO_VARIANTS], |
182 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 185 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
183 | 186 |
184 # TODO(rmcilroy,5038): Crashes in Deoptimizer::PatchCodeForDeoptimization on | 187 # TODO(rmcilroy,5038): Crashes in Deoptimizer::PatchCodeForDeoptimization on |
185 # nosnap builds when --stress-opt and --turbo-from-bytecode is enabled. | 188 # nosnap builds when --stress-opt and --turbo-from-bytecode is enabled. |
186 'harmony/generators-turbo': [PASS, FAST_VARIANTS], | 189 'harmony/generators-turbo': [PASS, FAST_VARIANTS], |
187 }], # ALWAYS | 190 }], # ALWAYS |
188 | 191 |
189 ['novfp3 == True', { | 192 ['novfp3 == True', { |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 'lithium/*': [SKIP], | 815 'lithium/*': [SKIP], |
813 'third_party/*': [SKIP], | 816 'third_party/*': [SKIP], |
814 'tools/*': [SKIP], | 817 'tools/*': [SKIP], |
815 'apply': [SKIP], | 818 'apply': [SKIP], |
816 'math-*': [SKIP], | 819 'math-*': [SKIP], |
817 'unicode-test': [SKIP], | 820 'unicode-test': [SKIP], |
818 'whitespaces': [SKIP], | 821 'whitespaces': [SKIP], |
819 }], # variant == asm_wasm | 822 }], # variant == asm_wasm |
820 | 823 |
821 ] | 824 ] |
OLD | NEW |