| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. | 195 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. |
| 196 # TODO(branelson): The old status entry was misconfigured as it added | 196 # TODO(branelson): The old status entry was misconfigured as it added |
| 197 # "or ignition == True". This was deprecated at some point and was never | 197 # "or ignition == True". This was deprecated at some point and was never |
| 198 # true. Essentially the next lines skip the tests for a bunch of | 198 # true. Essentially the next lines skip the tests for a bunch of |
| 199 # architectures. | 199 # architectures. |
| 200 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], | 200 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], |
| 201 'wasm/asm-wasm-literals': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64,
mips64el]', SKIP]], | 201 'wasm/asm-wasm-literals': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64,
mips64el]', SKIP]], |
| 202 'wasm/asm-wasm-copy': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips
64el]', SKIP]], | 202 'wasm/asm-wasm-copy': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips
64el]', SKIP]], |
| 203 'wasm/asm-wasm-deopt': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mip
s64el]', SKIP]], | 203 'wasm/asm-wasm-deopt': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mip
s64el]', SKIP]], |
| 204 'wasm/asm-wasm-switch': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], | 204 'wasm/asm-wasm-switch': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el]', SKIP]], |
| 205 # TODO(ahaas): test disabled until we figure out how runtime calls from wasm |
| 206 # work. |
| 207 'wasm/jit-single-function' : [SKIP], |
| 205 | 208 |
| 206 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 209 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
| 207 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 210 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
| 208 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], | 211 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], |
| 209 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], | 212 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], |
| 210 # desugaring regexp property class relies on ICU. | 213 # desugaring regexp property class relies on ICU. |
| 211 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 214 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
| 212 | 215 |
| 213 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). | 216 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). |
| 214 'unicodelctest': [PASS, NO_VARIANTS], | 217 'unicodelctest': [PASS, NO_VARIANTS], |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 ############################################################################## | 757 ############################################################################## |
| 755 ['gcov_coverage', { | 758 ['gcov_coverage', { |
| 756 # Tests taking too long. | 759 # Tests taking too long. |
| 757 'array-functions-prototype-misc': [SKIP], | 760 'array-functions-prototype-misc': [SKIP], |
| 758 | 761 |
| 759 # Stack overflow. | 762 # Stack overflow. |
| 760 'big-array-literal': [SKIP], | 763 'big-array-literal': [SKIP], |
| 761 }], # 'gcov_coverage' | 764 }], # 'gcov_coverage' |
| 762 | 765 |
| 763 ] | 766 ] |
| OLD | NEW |