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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 150 |
151 # Slow tests. | 151 # Slow tests. |
152 'copy-on-write-assert': [PASS, SLOW], | 152 'copy-on-write-assert': [PASS, SLOW], |
153 'debug-scopes': [PASS, SLOW], | 153 'debug-scopes': [PASS, SLOW], |
154 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], | 154 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], |
155 'readonly': [PASS, SLOW], | 155 'readonly': [PASS, SLOW], |
156 'regress/regress-1200351': [PASS, SLOW], | 156 'regress/regress-1200351': [PASS, SLOW], |
157 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], | 157 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], |
158 'es6/tail-call-megatest*': [PASS, SLOW, FAST_VARIANTS, ['tsan', SKIP]], | 158 'es6/tail-call-megatest*': [PASS, SLOW, FAST_VARIANTS, ['tsan', SKIP]], |
159 | 159 |
160 # TODO(titzer): ASM->WASM tests on these platforms | |
161 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], | |
162 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. | |
163 # TODO(branelson): The old status entry was misconfigured as it added | |
164 # "or ignition == True". This was deprecated at some point and was never | |
165 # true. Essentially the next lines skip the tests for a bunch of | |
166 # architectures. | |
167 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], | |
168 'wasm/asm-wasm-literals': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64,
mips64el]', SKIP]], | |
169 'wasm/asm-wasm-copy': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips
64el]', 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]], | |
172 | |
173 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 160 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
174 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 161 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
175 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], | 162 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], |
176 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], | 163 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], |
177 # desugaring regexp property class relies on ICU. | 164 # desugaring regexp property class relies on ICU. |
178 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 165 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
179 | 166 |
180 # Allocates a large array buffer, which TSAN sometimes cannot handle. | 167 # Allocates a large array buffer, which TSAN sometimes cannot handle. |
181 'regress/regress-599717': [PASS, ['tsan', SKIP]], | 168 'regress/regress-599717': [PASS, ['tsan', SKIP]], |
182 | 169 |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 'lithium/*': [SKIP], | 793 'lithium/*': [SKIP], |
807 'third_party/*': [SKIP], | 794 'third_party/*': [SKIP], |
808 'tools/*': [SKIP], | 795 'tools/*': [SKIP], |
809 'apply': [SKIP], | 796 'apply': [SKIP], |
810 'math-*': [SKIP], | 797 'math-*': [SKIP], |
811 'unicode-test': [SKIP], | 798 'unicode-test': [SKIP], |
812 'whitespaces': [SKIP], | 799 'whitespaces': [SKIP], |
813 }], # variant == asm_wasm | 800 }], # variant == asm_wasm |
814 | 801 |
815 ] | 802 ] |
OLD | NEW |