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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 'regress/regress-1132': [SKIP], | 432 'regress/regress-1132': [SKIP], |
433 | 433 |
434 # Currently always deopt on minus zero | 434 # Currently always deopt on minus zero |
435 'math-floor-of-div-minus-zero': [SKIP], | 435 'math-floor-of-div-minus-zero': [SKIP], |
436 }], # 'arch == mipsel or arch == mips' | 436 }], # 'arch == mipsel or arch == mips' |
437 | 437 |
438 ############################################################################## | 438 ############################################################################## |
439 ['arch == mips', { | 439 ['arch == mips', { |
440 # Flaky with TF. | 440 # Flaky with TF. |
441 'mirror-script': [PASS, NO_VARIANTS], | 441 'mirror-script': [PASS, NO_VARIANTS], |
| 442 |
| 443 # Emscripten requires little-endian, skip all tests on MIPS EB. |
| 444 'asm/embenchen/*': [SKIP], |
442 }], # 'arch == mips' | 445 }], # 'arch == mips' |
443 | 446 |
444 ############################################################################## | 447 ############################################################################## |
445 ['arch == mips64el', { | 448 ['arch == mips64el', { |
446 | 449 |
447 # Slow tests which times out in debug mode. | 450 # Slow tests which times out in debug mode. |
448 'try': [PASS, ['mode == debug', SKIP]], | 451 'try': [PASS, ['mode == debug', SKIP]], |
449 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 452 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
450 'array-constructor': [PASS, ['mode == debug', SKIP]], | 453 'array-constructor': [PASS, ['mode == debug', SKIP]], |
451 | 454 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 'never-optimize': [SKIP], | 575 'never-optimize': [SKIP], |
573 'regress/regress-2185-2': [SKIP], | 576 'regress/regress-2185-2': [SKIP], |
574 'harmony/object-observe': [SKIP], | 577 'harmony/object-observe': [SKIP], |
575 'readonly': [SKIP], | 578 'readonly': [SKIP], |
576 'array-feedback': [SKIP], | 579 'array-feedback': [SKIP], |
577 | 580 |
578 # Deopt every n garbage collections collides with deopt every n times. | 581 # Deopt every n garbage collections collides with deopt every n times. |
579 'regress/regress-2653': [SKIP], | 582 'regress/regress-2653': [SKIP], |
580 }], # 'deopt_fuzzer == True' | 583 }], # 'deopt_fuzzer == True' |
581 ] | 584 ] |
OLD | NEW |