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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 'array-constructor': [PASS, SLOW], | 233 'array-constructor': [PASS, SLOW], |
234 'json': [PASS, SLOW], | 234 'json': [PASS, SLOW], |
235 'regress/regress-446389': [PASS, SLOW], | 235 'regress/regress-446389': [PASS, SLOW], |
236 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], | 236 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], |
237 | 237 |
238 # BUG(v8:4779): Crashes flakily with stress mode on arm64. | 238 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
239 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], | 239 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
240 | 240 |
241 #BUG(v8:5683) | 241 #BUG(v8:5683) |
242 'wasm/import-memory': [SKIP], | 242 'wasm/import-memory': [SKIP], |
243 | |
244 # Crashes with WASM turned on by default on arm64 gc-stress | |
245 'regress/regress-500831': [PASS, ['arch == arm64', SKIP]], | |
246 }], # 'gc_stress == True' | 243 }], # 'gc_stress == True' |
247 | 244 |
248 ############################################################################## | 245 ############################################################################## |
249 ['byteorder == big', { | 246 ['byteorder == big', { |
250 # Emscripten requires little-endian, skip all tests on big endian platforms. | 247 # Emscripten requires little-endian, skip all tests on big endian platforms. |
251 'asm/embenchen/*': [SKIP], | 248 'asm/embenchen/*': [SKIP], |
252 'asm/poppler/*': [SKIP], | 249 'asm/poppler/*': [SKIP], |
253 'asm/sqlite3/*': [SKIP], | 250 'asm/sqlite3/*': [SKIP], |
254 # TODO(mips-team): Fix Wasm for big-endian. | 251 # TODO(mips-team): Fix Wasm for big-endian. |
255 'wasm/*': [SKIP], | 252 'wasm/*': [SKIP], |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 'lithium/*': [SKIP], | 637 'lithium/*': [SKIP], |
641 'third_party/*': [SKIP], | 638 'third_party/*': [SKIP], |
642 'tools/*': [SKIP], | 639 'tools/*': [SKIP], |
643 'apply': [SKIP], | 640 'apply': [SKIP], |
644 'math-*': [SKIP], | 641 'math-*': [SKIP], |
645 'unicode-test': [SKIP], | 642 'unicode-test': [SKIP], |
646 'whitespaces': [SKIP], | 643 'whitespaces': [SKIP], |
647 }], # variant == wasm_traps | 644 }], # variant == wasm_traps |
648 | 645 |
649 ] | 646 ] |
OLD | NEW |