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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. | 162 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. |
163 # TODO(branelson): The old status entry was misconfigured as it added | 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 | 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 | 165 # true. Essentially the next lines skip the tests for a bunch of |
166 # architectures. | 166 # architectures. |
167 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], | 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]], | 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]], | 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]], | 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 # TODO(ahaas): test disabled until we figure out how runtime calls from wasm | |
173 # work. | |
174 'wasm/jit-single-function' : [SKIP], | |
175 | 172 |
176 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 173 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
177 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 174 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
178 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], | 175 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], |
179 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], | 176 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], |
180 # desugaring regexp property class relies on ICU. | 177 # desugaring regexp property class relies on ICU. |
181 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 178 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
182 | 179 |
183 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). | 180 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). |
184 'unicodelctest': [PASS, NO_VARIANTS], | 181 'unicodelctest': [PASS, NO_VARIANTS], |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
824 ############################################################################## | 821 ############################################################################## |
825 ['gcov_coverage', { | 822 ['gcov_coverage', { |
826 # Tests taking too long. | 823 # Tests taking too long. |
827 'array-functions-prototype-misc': [SKIP], | 824 'array-functions-prototype-misc': [SKIP], |
828 | 825 |
829 # Stack overflow. | 826 # Stack overflow. |
830 'big-array-literal': [SKIP], | 827 'big-array-literal': [SKIP], |
831 }], # 'gcov_coverage' | 828 }], # 'gcov_coverage' |
832 | 829 |
833 ] | 830 ] |
OLD | NEW |