| 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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 | 633 |
| 634 # Lead to OOM: | 634 # Lead to OOM: |
| 635 'string-oom-*': [SKIP], | 635 'string-oom-*': [SKIP], |
| 636 | 636 |
| 637 # Crashes. | 637 # Crashes. |
| 638 'harmony/private': [SKIP], | 638 'harmony/private': [SKIP], |
| 639 'harmony/symbols': [SKIP], | 639 'harmony/symbols': [SKIP], |
| 640 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 640 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 641 | 641 |
| 642 ############################################################################## | 642 ############################################################################## |
| 643 ['arch == x87', { | |
| 644 # Currently Turbofan is not supported by x87. | |
| 645 'compiler/opt-next-call-turbo': [SKIP], | |
| 646 }], # 'arch == x87' | |
| 647 | |
| 648 ############################################################################## | |
| 649 ['deopt_fuzzer == True', { | 643 ['deopt_fuzzer == True', { |
| 650 | 644 |
| 651 # Skip tests that are not suitable for deoptimization fuzzing. | 645 # Skip tests that are not suitable for deoptimization fuzzing. |
| 652 'assert-opt-and-deopt': [SKIP], | 646 'assert-opt-and-deopt': [SKIP], |
| 653 'never-optimize': [SKIP], | 647 'never-optimize': [SKIP], |
| 654 'regress/regress-2185-2': [SKIP], | 648 'regress/regress-2185-2': [SKIP], |
| 655 'harmony/object-observe': [SKIP], | 649 'harmony/object-observe': [SKIP], |
| 656 'readonly': [SKIP], | 650 'readonly': [SKIP], |
| 657 'array-feedback': [SKIP], | 651 'array-feedback': [SKIP], |
| 658 | 652 |
| 659 # Deopting uses just enough memory to make this one OOM. | 653 # Deopting uses just enough memory to make this one OOM. |
| 660 'regress/regress-3976': [SKIP], | 654 'regress/regress-3976': [SKIP], |
| 661 | 655 |
| 662 # Deopt every n garbage collections collides with deopt every n times. | 656 # Deopt every n garbage collections collides with deopt every n times. |
| 663 'regress/regress-2653': [SKIP], | 657 'regress/regress-2653': [SKIP], |
| 664 }], # 'deopt_fuzzer == True' | 658 }], # 'deopt_fuzzer == True' |
| 665 | 659 |
| 666 ############################################################################## | 660 ############################################################################## |
| 667 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 661 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 668 | 662 |
| 669 # take too long with the simulator. | 663 # take too long with the simulator. |
| 670 'regress/regress-1132': [SKIP], | 664 'regress/regress-1132': [SKIP], |
| 671 }], # 'arch == ppc and simulator_run == True' | 665 }], # 'arch == ppc and simulator_run == True' |
| 672 ] | 666 ] |
| OLD | NEW |