Chromium Code Reviews| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 564 | 564 |
| 565 # Lead to OOM: | 565 # Lead to OOM: |
| 566 'string-oom-*': [SKIP], | 566 'string-oom-*': [SKIP], |
| 567 | 567 |
| 568 # Crashes. | 568 # Crashes. |
| 569 'harmony/private': [SKIP], | 569 'harmony/private': [SKIP], |
| 570 'harmony/symbols': [SKIP], | 570 'harmony/symbols': [SKIP], |
| 571 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 571 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 572 | 572 |
| 573 ############################################################################## | 573 ############################################################################## |
| 574 ['arch == ppc or arch == ppc64', { | |
| 575 | |
| 576 # Test does not handle increased precision of multiply-add optimization | |
|
Sven Panne
2015/01/08 10:13:53
Huh? What is the exact problem here? No result sho
michael_dawson
2015/01/08 23:51:11
PPC has Floating-Point Multiply-Add Instructions w
Jakob Kummerow
2015/01/09 11:36:05
Drive-by: The reason we want optimization not to a
| |
| 577 'numops-fuzz-part2': [PASS, FAIL] | |
| 578 | |
| 579 }], # 'arch == ppc or arch == ppc64' | |
| 580 | |
| 581 ############################################################################## | |
| 574 ['deopt_fuzzer == True', { | 582 ['deopt_fuzzer == True', { |
| 575 | 583 |
| 576 # Skip tests that are not suitable for deoptimization fuzzing. | 584 # Skip tests that are not suitable for deoptimization fuzzing. |
| 577 'assert-opt-and-deopt': [SKIP], | 585 'assert-opt-and-deopt': [SKIP], |
| 578 'never-optimize': [SKIP], | 586 'never-optimize': [SKIP], |
| 579 'regress/regress-2185-2': [SKIP], | 587 'regress/regress-2185-2': [SKIP], |
| 580 'harmony/object-observe': [SKIP], | 588 'harmony/object-observe': [SKIP], |
| 581 'readonly': [SKIP], | 589 'readonly': [SKIP], |
| 582 'array-feedback': [SKIP], | 590 'array-feedback': [SKIP], |
| 583 | 591 |
| 584 # Deopt every n garbage collections collides with deopt every n times. | 592 # Deopt every n garbage collections collides with deopt every n times. |
| 585 'regress/regress-2653': [SKIP], | 593 'regress/regress-2653': [SKIP], |
| 586 }], # 'deopt_fuzzer == True' | 594 }], # 'deopt_fuzzer == True' |
| 587 ] | 595 ] |
| OLD | NEW |