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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 'math-floor-of-div-minus-zero': [SKIP], | 570 'math-floor-of-div-minus-zero': [SKIP], |
571 }], # 'arch == mipsel or arch == mips' | 571 }], # 'arch == mipsel or arch == mips' |
572 | 572 |
573 ############################################################################## | 573 ############################################################################## |
574 ['arch == mips', { | 574 ['arch == mips', { |
575 # Flaky with TF. | 575 # Flaky with TF. |
576 'mirror-script': [PASS, NO_VARIANTS], | 576 'mirror-script': [PASS, NO_VARIANTS], |
577 }], # 'arch == mips' | 577 }], # 'arch == mips' |
578 | 578 |
579 ############################################################################## | 579 ############################################################################## |
| 580 ['arch == x87', { |
| 581 # Turbofan will hit the known issue that x87 changes sNaN to qNaN by default. |
| 582 'regress/regress-undefined-nan': [SKIP], |
| 583 }], # 'arch == x87' |
| 584 |
| 585 ############################################################################## |
580 ['arch == mips64el or arch == mips64', { | 586 ['arch == mips64el or arch == mips64', { |
581 | 587 |
582 # Slow tests which times out in debug mode. | 588 # Slow tests which times out in debug mode. |
583 'try': [PASS, ['mode == debug', SKIP]], | 589 'try': [PASS, ['mode == debug', SKIP]], |
584 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 590 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
585 'array-constructor': [PASS, ['mode == debug', SKIP]], | 591 'array-constructor': [PASS, ['mode == debug', SKIP]], |
586 | 592 |
587 # Times out often in release mode on MIPS. | 593 # Times out often in release mode on MIPS. |
588 'compiler/regress-stacktrace-methods': [PASS, PASS, ['mode == release', TIMEOU
T]], | 594 'compiler/regress-stacktrace-methods': [PASS, PASS, ['mode == release', TIMEOU
T]], |
589 'array-splice': [PASS, TIMEOUT], | 595 'array-splice': [PASS, TIMEOUT], |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 'd8-worker-sharedarraybuffer': [SKIP], | 731 'd8-worker-sharedarraybuffer': [SKIP], |
726 }], # 'predictable == True' | 732 }], # 'predictable == True' |
727 | 733 |
728 ############################################################################## | 734 ############################################################################## |
729 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 735 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
730 | 736 |
731 # take too long with the simulator. | 737 # take too long with the simulator. |
732 'regress/regress-1132': [SKIP], | 738 'regress/regress-1132': [SKIP], |
733 }], # 'arch == ppc and simulator_run == True' | 739 }], # 'arch == ppc and simulator_run == True' |
734 ] | 740 ] |
OLD | NEW |