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 # BUG(v8:5873): Crashes with --ignition-staging under gc_stress |
| 245 'es6/block-scoping': [SKIP], |
243 }], # 'gc_stress == True' | 246 }], # 'gc_stress == True' |
244 | 247 |
245 ############################################################################## | 248 ############################################################################## |
246 ['byteorder == big', { | 249 ['byteorder == big', { |
247 # Emscripten requires little-endian, skip all tests on big endian platforms. | 250 # Emscripten requires little-endian, skip all tests on big endian platforms. |
248 'asm/embenchen/*': [SKIP], | 251 'asm/embenchen/*': [SKIP], |
249 'asm/poppler/*': [SKIP], | 252 'asm/poppler/*': [SKIP], |
250 'asm/sqlite3/*': [SKIP], | 253 'asm/sqlite3/*': [SKIP], |
251 # TODO(mips-team): Fix Wasm for big-endian. | 254 # TODO(mips-team): Fix Wasm for big-endian. |
252 'wasm/*': [SKIP], | 255 'wasm/*': [SKIP], |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 'lithium/*': [SKIP], | 640 'lithium/*': [SKIP], |
638 'third_party/*': [SKIP], | 641 'third_party/*': [SKIP], |
639 'tools/*': [SKIP], | 642 'tools/*': [SKIP], |
640 'apply': [SKIP], | 643 'apply': [SKIP], |
641 'math-*': [SKIP], | 644 'math-*': [SKIP], |
642 'unicode-test': [SKIP], | 645 'unicode-test': [SKIP], |
643 'whitespaces': [SKIP], | 646 'whitespaces': [SKIP], |
644 }], # variant == wasm_traps | 647 }], # variant == wasm_traps |
645 | 648 |
646 ] | 649 ] |
OLD | NEW |