| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 # Too slow for gc stress. | 245 # Too slow for gc stress. |
| 246 'asm/embenchen/box2d': [SKIP], | 246 'asm/embenchen/box2d': [SKIP], |
| 247 | 247 |
| 248 # Issue 3723. | 248 # Issue 3723. |
| 249 'regress/regress-3717': [SKIP], | 249 'regress/regress-3717': [SKIP], |
| 250 # Issue 3776. | 250 # Issue 3776. |
| 251 'debug-stepframe': [SKIP], | 251 'debug-stepframe': [SKIP], |
| 252 }], # 'gc_stress == True' | 252 }], # 'gc_stress == True' |
| 253 | 253 |
| 254 ############################################################################## | 254 ############################################################################## |
| 255 ['byteorder == big', { |
| 256 # Emscripten requires little-endian, skip all tests on big endian platforms. |
| 257 'asm/embenchen/*': [SKIP], |
| 258 }], # 'byteorder == big' |
| 259 |
| 260 ############################################################################## |
| 255 ['arch == arm64 or arch == android_arm64', { | 261 ['arch == arm64 or arch == android_arm64', { |
| 256 | 262 |
| 257 # arm64 TF timeout. | 263 # arm64 TF timeout. |
| 258 'regress/regress-1257': [PASS, TIMEOUT], | 264 'regress/regress-1257': [PASS, TIMEOUT], |
| 259 | 265 |
| 260 # Requires bigger stack size in the Genesis and if stack size is increased, | 266 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 261 # the test requires too much time to run. However, the problem test covers | 267 # the test requires too much time to run. However, the problem test covers |
| 262 # should be platform-independent. | 268 # should be platform-independent. |
| 263 'regress/regress-1132': [SKIP], | 269 'regress/regress-1132': [SKIP], |
| 264 | 270 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 'regress/regress-1132': [SKIP], | 439 'regress/regress-1132': [SKIP], |
| 434 | 440 |
| 435 # Currently always deopt on minus zero | 441 # Currently always deopt on minus zero |
| 436 'math-floor-of-div-minus-zero': [SKIP], | 442 'math-floor-of-div-minus-zero': [SKIP], |
| 437 }], # 'arch == mipsel or arch == mips' | 443 }], # 'arch == mipsel or arch == mips' |
| 438 | 444 |
| 439 ############################################################################## | 445 ############################################################################## |
| 440 ['arch == mips', { | 446 ['arch == mips', { |
| 441 # Flaky with TF. | 447 # Flaky with TF. |
| 442 'mirror-script': [PASS, NO_VARIANTS], | 448 'mirror-script': [PASS, NO_VARIANTS], |
| 443 | |
| 444 # Emscripten requires little-endian, skip all tests on MIPS EB. | |
| 445 'asm/embenchen/*': [SKIP], | |
| 446 }], # 'arch == mips' | 449 }], # 'arch == mips' |
| 447 | 450 |
| 448 ############################################################################## | 451 ############################################################################## |
| 449 ['arch == mips64el', { | 452 ['arch == mips64el', { |
| 450 | 453 |
| 451 # Slow tests which times out in debug mode. | 454 # Slow tests which times out in debug mode. |
| 452 'try': [PASS, ['mode == debug', SKIP]], | 455 'try': [PASS, ['mode == debug', SKIP]], |
| 453 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 456 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
| 454 'array-constructor': [PASS, ['mode == debug', SKIP]], | 457 'array-constructor': [PASS, ['mode == debug', SKIP]], |
| 455 | 458 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 'never-optimize': [SKIP], | 579 'never-optimize': [SKIP], |
| 577 'regress/regress-2185-2': [SKIP], | 580 'regress/regress-2185-2': [SKIP], |
| 578 'harmony/object-observe': [SKIP], | 581 'harmony/object-observe': [SKIP], |
| 579 'readonly': [SKIP], | 582 'readonly': [SKIP], |
| 580 'array-feedback': [SKIP], | 583 'array-feedback': [SKIP], |
| 581 | 584 |
| 582 # Deopt every n garbage collections collides with deopt every n times. | 585 # Deopt every n garbage collections collides with deopt every n times. |
| 583 'regress/regress-2653': [SKIP], | 586 'regress/regress-2653': [SKIP], |
| 584 }], # 'deopt_fuzzer == True' | 587 }], # 'deopt_fuzzer == True' |
| 585 ] | 588 ] |
| OLD | NEW |