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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 'array-constructor': [PASS, SLOW], | 260 'array-constructor': [PASS, SLOW], |
261 'json': [PASS, SLOW], | 261 'json': [PASS, SLOW], |
262 'regress/regress-446389': [PASS, SLOW], | 262 'regress/regress-446389': [PASS, SLOW], |
263 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], | 263 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], |
264 | 264 |
265 # BUG(v8:3097) | 265 # BUG(v8:3097) |
266 'debug-references': [SKIP], | 266 'debug-references': [SKIP], |
267 | 267 |
268 # BUG(v8:4779): Crashes flakily with stress mode on arm64. | 268 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
269 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], | 269 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
270 | |
271 # BUG(v8:5053). | |
272 'wasm/embenchen/fasta': [PASS, FAST_VARIANTS], | |
273 }], # 'gc_stress == True' | 270 }], # 'gc_stress == True' |
274 | 271 |
275 ############################################################################## | 272 ############################################################################## |
276 ['byteorder == big', { | 273 ['byteorder == big', { |
277 # Emscripten requires little-endian, skip all tests on big endian platforms. | 274 # Emscripten requires little-endian, skip all tests on big endian platforms. |
278 'asm/embenchen/*': [SKIP], | 275 'asm/embenchen/*': [SKIP], |
279 'asm/poppler/*': [SKIP], | 276 'asm/poppler/*': [SKIP], |
280 'asm/sqlite3/*': [SKIP], | 277 'asm/sqlite3/*': [SKIP], |
281 # TODO(mips-team): Fix Wasm for big-endian. | 278 # TODO(mips-team): Fix Wasm for big-endian. |
282 'wasm/*': [SKIP], | 279 'wasm/*': [SKIP], |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 'lithium/*': [SKIP], | 812 'lithium/*': [SKIP], |
816 'third_party/*': [SKIP], | 813 'third_party/*': [SKIP], |
817 'tools/*': [SKIP], | 814 'tools/*': [SKIP], |
818 'apply': [SKIP], | 815 'apply': [SKIP], |
819 'math-*': [SKIP], | 816 'math-*': [SKIP], |
820 'unicode-test': [SKIP], | 817 'unicode-test': [SKIP], |
821 'whitespaces': [SKIP], | 818 'whitespaces': [SKIP], |
822 }], # variant == asm_wasm | 819 }], # variant == asm_wasm |
823 | 820 |
824 ] | 821 ] |
OLD | NEW |