| 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 'regress/regress-3976': [SKIP], | 233 'regress/regress-3976': [SKIP], |
| 234 | 234 |
| 235 # Slow tests. | 235 # Slow tests. |
| 236 'array-constructor': [PASS, SLOW], | 236 'array-constructor': [PASS, SLOW], |
| 237 'json': [PASS, SLOW], | 237 'json': [PASS, SLOW], |
| 238 'regress/regress-446389': [PASS, SLOW], | 238 'regress/regress-446389': [PASS, SLOW], |
| 239 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], | 239 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], |
| 240 | 240 |
| 241 # BUG(v8:4779): Crashes flakily with stress mode on arm64. | 241 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
| 242 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], | 242 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
| 243 | |
| 244 #BUG(v8:5683) | |
| 245 'wasm/import-memory': [SKIP], | |
| 246 | |
| 247 }], # 'gc_stress == True' | 243 }], # 'gc_stress == True' |
| 248 | 244 |
| 249 ############################################################################## | 245 ############################################################################## |
| 250 ['byteorder == big', { | 246 ['byteorder == big', { |
| 251 # Emscripten requires little-endian, skip all tests on big endian platforms. | 247 # Emscripten requires little-endian, skip all tests on big endian platforms. |
| 252 'asm/embenchen/*': [SKIP], | 248 'asm/embenchen/*': [SKIP], |
| 253 'asm/poppler/*': [SKIP], | 249 'asm/poppler/*': [SKIP], |
| 254 'asm/sqlite3/*': [SKIP], | 250 'asm/sqlite3/*': [SKIP], |
| 255 # TODO(mips-team): Fix Wasm for big-endian. | 251 # TODO(mips-team): Fix Wasm for big-endian. |
| 256 'wasm/*': [SKIP], | 252 'wasm/*': [SKIP], |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 'lithium/*': [SKIP], | 648 'lithium/*': [SKIP], |
| 653 'third_party/*': [SKIP], | 649 'third_party/*': [SKIP], |
| 654 'tools/*': [SKIP], | 650 'tools/*': [SKIP], |
| 655 'apply': [SKIP], | 651 'apply': [SKIP], |
| 656 'math-*': [SKIP], | 652 'math-*': [SKIP], |
| 657 'unicode-test': [SKIP], | 653 'unicode-test': [SKIP], |
| 658 'whitespaces': [SKIP], | 654 'whitespaces': [SKIP], |
| 659 }], # variant == wasm_traps | 655 }], # variant == wasm_traps |
| 660 | 656 |
| 661 ] | 657 ] |
| OLD | NEW |