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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 'debug-scopes': [PASS, SLOW], | 264 'debug-scopes': [PASS, SLOW], |
265 'es7/object-observe': [PASS, ['mode == debug', SLOW]], | 265 'es7/object-observe': [PASS, ['mode == debug', SLOW]], |
266 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], | 266 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], |
267 'readonly': [PASS, SLOW], | 267 'readonly': [PASS, SLOW], |
268 'regress/regress-1200351': [PASS, ['mode == debug', SLOW]], | 268 'regress/regress-1200351': [PASS, ['mode == debug', SLOW]], |
269 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], | 269 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], |
270 | 270 |
271 # TODO(titzer): correct WASM adapter frame alignment on arm64 | 271 # TODO(titzer): correct WASM adapter frame alignment on arm64 |
272 'wasm/*': [PASS, ['arch == arm64', SKIP]], | 272 'wasm/*': [PASS, ['arch == arm64', SKIP]], |
273 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], | 273 'wasm/asm-wasm': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mips64el]
', SKIP]], |
| 274 # TODO(branelson): Figure out why ignition + asm-wasm-stdlib fails. |
| 275 'wasm/asm-wasm-stdlib': [PASS, ['arch in [arm, arm64, mips, mipsel, mips64, mi
ps64el] or ignition == True', SKIP]], |
274 | 276 |
275 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. | 277 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. |
276 'wasm/embenchen/*': [PASS, ['ignition == True', SKIP]], | 278 'wasm/embenchen/*': [PASS, ['ignition == True', SKIP]], |
277 | 279 |
278 # TODO(bradnelson) Fix and re-enable. | 280 # TODO(bradnelson) Fix and re-enable. |
279 'wasm/embenchen/copy': [FAIL], # wrong answer | 281 'wasm/embenchen/copy': [FAIL], # wrong answer |
280 'wasm/embenchen/box2d': [SKIP], # hang | 282 'wasm/embenchen/box2d': [SKIP], # hang |
281 'wasm/embenchen/lua_binarytrees': [SKIP], # fails decode | 283 'wasm/embenchen/lua_binarytrees': [SKIP], # fails decode |
282 'wasm/embenchen/zlib': [SKIP], # fails gc-stress | 284 'wasm/embenchen/zlib': [SKIP], # fails gc-stress |
283 | 285 |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 ############################################################################## | 886 ############################################################################## |
885 ['gcov_coverage', { | 887 ['gcov_coverage', { |
886 # Tests taking too long. | 888 # Tests taking too long. |
887 'array-functions-prototype-misc': [SKIP], | 889 'array-functions-prototype-misc': [SKIP], |
888 | 890 |
889 # Stack overflow. | 891 # Stack overflow. |
890 'big-array-literal': [SKIP], | 892 'big-array-literal': [SKIP], |
891 }], # 'gcov_coverage' | 893 }], # 'gcov_coverage' |
892 | 894 |
893 ] | 895 ] |
OLD | NEW |