| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 'array-constructor': [PASS, SLOW], | 242 'array-constructor': [PASS, SLOW], |
| 243 'json': [PASS, SLOW], | 243 'json': [PASS, SLOW], |
| 244 'regress/regress-446389': [PASS, SLOW], | 244 'regress/regress-446389': [PASS, SLOW], |
| 245 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], | 245 'regress/regress-inline-getter-near-stack-limit': [PASS, SLOW], |
| 246 | 246 |
| 247 # BUG(v8:3097) | 247 # BUG(v8:3097) |
| 248 'debug-references': [SKIP], | 248 'debug-references': [SKIP], |
| 249 | 249 |
| 250 # BUG(v8:4779): Crashes flakily with stress mode on arm64. | 250 # BUG(v8:4779): Crashes flakily with stress mode on arm64. |
| 251 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], | 251 'array-splice': [PASS, SLOW, ['arch == arm64', FAST_VARIANTS]], |
| 252 |
| 253 # BUG(chromium:664490) |
| 254 'debug-scopes': [SKIP], |
| 252 }], # 'gc_stress == True' | 255 }], # 'gc_stress == True' |
| 253 | 256 |
| 254 ############################################################################## | 257 ############################################################################## |
| 255 ['byteorder == big', { | 258 ['byteorder == big', { |
| 256 # Emscripten requires little-endian, skip all tests on big endian platforms. | 259 # Emscripten requires little-endian, skip all tests on big endian platforms. |
| 257 'asm/embenchen/*': [SKIP], | 260 'asm/embenchen/*': [SKIP], |
| 258 'asm/poppler/*': [SKIP], | 261 'asm/poppler/*': [SKIP], |
| 259 'asm/sqlite3/*': [SKIP], | 262 'asm/sqlite3/*': [SKIP], |
| 260 # TODO(mips-team): Fix Wasm for big-endian. | 263 # TODO(mips-team): Fix Wasm for big-endian. |
| 261 'wasm/*': [SKIP], | 264 'wasm/*': [SKIP], |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 'lithium/*': [SKIP], | 676 'lithium/*': [SKIP], |
| 674 'third_party/*': [SKIP], | 677 'third_party/*': [SKIP], |
| 675 'tools/*': [SKIP], | 678 'tools/*': [SKIP], |
| 676 'apply': [SKIP], | 679 'apply': [SKIP], |
| 677 'math-*': [SKIP], | 680 'math-*': [SKIP], |
| 678 'unicode-test': [SKIP], | 681 'unicode-test': [SKIP], |
| 679 'whitespaces': [SKIP], | 682 'whitespaces': [SKIP], |
| 680 }], # variant == asm_wasm | 683 }], # variant == asm_wasm |
| 681 | 684 |
| 682 ] | 685 ] |
| OLD | NEW |