| 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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 | 462 |
| 463 # Lead to OOM: | 463 # Lead to OOM: |
| 464 'string-oom-*': [SKIP], | 464 'string-oom-*': [SKIP], |
| 465 | 465 |
| 466 # Crashes. | 466 # Crashes. |
| 467 'harmony/private': [SKIP], | 467 'harmony/private': [SKIP], |
| 468 'harmony/symbols': [SKIP], | 468 'harmony/symbols': [SKIP], |
| 469 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 469 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 470 | 470 |
| 471 ############################################################################## | 471 ############################################################################## |
| 472 ['arch == ppc or arch == ppc64', { |
| 473 |
| 474 # Test does not handle increased precision of multiply-add optimization |
| 475 'numops-fuzz-part2': [PASS, FAIL] |
| 476 |
| 477 }], # 'arch == ppc or arch == ppc64' |
| 478 |
| 479 ############################################################################## |
| 472 ['deopt_fuzzer == True', { | 480 ['deopt_fuzzer == True', { |
| 473 | 481 |
| 474 # Skip tests that are not suitable for deoptimization fuzzing. | 482 # Skip tests that are not suitable for deoptimization fuzzing. |
| 475 'assert-opt-and-deopt': [SKIP], | 483 'assert-opt-and-deopt': [SKIP], |
| 476 'never-optimize': [SKIP], | 484 'never-optimize': [SKIP], |
| 477 'regress/regress-2185-2': [SKIP], | 485 'regress/regress-2185-2': [SKIP], |
| 478 'harmony/object-observe': [SKIP], | 486 'harmony/object-observe': [SKIP], |
| 479 'readonly': [SKIP], | 487 'readonly': [SKIP], |
| 480 'array-feedback': [SKIP], | 488 'array-feedback': [SKIP], |
| 481 | 489 |
| 482 # Deopt every n garbage collections collides with deopt every n times. | 490 # Deopt every n garbage collections collides with deopt every n times. |
| 483 'regress/regress-2653': [SKIP], | 491 'regress/regress-2653': [SKIP], |
| 484 }], # 'deopt_fuzzer == True' | 492 }], # 'deopt_fuzzer == True' |
| 485 ] | 493 ] |
| OLD | NEW |