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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 | 488 |
489 # Requires bigger stack size in the Genesis and if stack size is increased, | 489 # Requires bigger stack size in the Genesis and if stack size is increased, |
490 # the test requires too much time to run. However, the problem test covers | 490 # the test requires too much time to run. However, the problem test covers |
491 # should be platform-independent. | 491 # should be platform-independent. |
492 'regress/regress-1132': [SKIP], | 492 'regress/regress-1132': [SKIP], |
493 | 493 |
494 # Currently always deopt on minus zero | 494 # Currently always deopt on minus zero |
495 'math-floor-of-div-minus-zero': [SKIP], | 495 'math-floor-of-div-minus-zero': [SKIP], |
496 }], # 'arch == mips64el or arch == mips64' | 496 }], # 'arch == mips64el or arch == mips64' |
497 | 497 |
| 498 ['arch == x87', { |
| 499 # The result produced by Gcc on linux platform is extended 80-bit double |
| 500 # precision and not the expected standard 64-bit double precision. |
| 501 'number-tostring-big-integer': [SKIP], |
| 502 }], # 'arch == x87' |
| 503 |
498 ############################################################################## | 504 ############################################################################## |
499 ['system == windows', { | 505 ['system == windows', { |
500 # TODO(mstarzinger): Too slow with turbo fan. | 506 # TODO(mstarzinger): Too slow with turbo fan. |
501 'big-object-literal': [SKIP], | 507 'big-object-literal': [SKIP], |
502 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], | 508 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], |
503 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], | 509 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], |
504 'unicodelctest': [PASS, ['mode == debug', SKIP]], | 510 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
505 | 511 |
506 # BUG(v8:4495). | 512 # BUG(v8:4495). |
507 'es6/collections': [PASS, ['arch == ia32', FAST_VARIANTS]], | 513 'es6/collections': [PASS, ['arch == ia32', FAST_VARIANTS]], |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 'lithium/*': [SKIP], | 660 'lithium/*': [SKIP], |
655 'third_party/*': [SKIP], | 661 'third_party/*': [SKIP], |
656 'tools/*': [SKIP], | 662 'tools/*': [SKIP], |
657 'apply': [SKIP], | 663 'apply': [SKIP], |
658 'math-*': [SKIP], | 664 'math-*': [SKIP], |
659 'unicode-test': [SKIP], | 665 'unicode-test': [SKIP], |
660 'whitespaces': [SKIP], | 666 'whitespaces': [SKIP], |
661 }], # variant == wasm_traps | 667 }], # variant == wasm_traps |
662 | 668 |
663 ] | 669 ] |
OLD | NEW |