| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 | 554 |
| 555 # Requires bigger stack size in the Genesis and if stack size is increased, | 555 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 556 # the test requires too much time to run. However, the problem test covers | 556 # the test requires too much time to run. However, the problem test covers |
| 557 # should be platform-independent. | 557 # should be platform-independent. |
| 558 'regress/regress-1132': [SKIP], | 558 'regress/regress-1132': [SKIP], |
| 559 | 559 |
| 560 # Currently always deopt on minus zero | 560 # Currently always deopt on minus zero |
| 561 'math-floor-of-div-minus-zero': [SKIP], | 561 'math-floor-of-div-minus-zero': [SKIP], |
| 562 }], # 'arch == mips64el' | 562 }], # 'arch == mips64el' |
| 563 | 563 |
| 564 ['arch == mips64el and simulator_run == False', { | |
| 565 # Random failures on HW, need investigation. | |
| 566 'debug-*': [SKIP], | |
| 567 }], | |
| 568 ############################################################################## | 564 ############################################################################## |
| 569 ['system == windows', { | 565 ['system == windows', { |
| 570 # TODO(mstarzinger): Too slow with turbo fan. | 566 # TODO(mstarzinger): Too slow with turbo fan. |
| 571 'big-object-literal': [PASS, ['mode == debug', SKIP]], | 567 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
| 572 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], | 568 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], |
| 573 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], | 569 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], |
| 574 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], | 570 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], |
| 575 'unicodelctest': [PASS, ['mode == debug', SKIP]], | 571 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
| 576 | 572 |
| 577 # BUG(v8:3435) | 573 # BUG(v8:3435) |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 'regress/regress-2653': [SKIP], | 653 'regress/regress-2653': [SKIP], |
| 658 }], # 'deopt_fuzzer == True' | 654 }], # 'deopt_fuzzer == True' |
| 659 | 655 |
| 660 ############################################################################## | 656 ############################################################################## |
| 661 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 657 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 662 | 658 |
| 663 # take too long with the simulator. | 659 # take too long with the simulator. |
| 664 'regress/regress-1132': [SKIP], | 660 'regress/regress-1132': [SKIP], |
| 665 }], # 'arch == ppc and simulator_run == True' | 661 }], # 'arch == ppc and simulator_run == True' |
| 666 ] | 662 ] |
| OLD | NEW |