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 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 528 # the test requires too much time to run. However, the problem test covers | 528 # the test requires too much time to run. However, the problem test covers |
| 529 # should be platform-independent. | 529 # should be platform-independent. |
| 530 'regress/regress-1132': [SKIP], | 530 'regress/regress-1132': [SKIP], |
| 531 | 531 |
| 532 # Poor performance for NaCl V8 causes an assertion failure for this test. | 532 # Poor performance for NaCl V8 causes an assertion failure for this test. |
| 533 'regress/regress-165637': [SKIP], | 533 'regress/regress-165637': [SKIP], |
| 534 | 534 |
| 535 # Skip long running test that times out in debug mode and goes OOM on NaCl. | 535 # Skip long running test that times out in debug mode and goes OOM on NaCl. |
| 536 'regress/regress-crbug-160010': [SKIP], | 536 'regress/regress-crbug-160010': [SKIP], |
| 537 | 537 |
| 538 # Skip tests that timout with turbofan. | |
|
Sven Panne
2014/09/11 11:30:04
+e
| |
| 539 'regress/regress-1257': [PASS, NO_VARIANTS], | |
| 540 'regress/regress-2618': [PASS, NO_VARIANTS], | |
| 541 'regress/regress-298269': [PASS, NO_VARIANTS], | |
| 542 'regress/regress-634': [PASS, NO_VARIANTS], | |
| 543 'regress/regress-91008': [PASS, NO_VARIANTS], | |
| 544 'compiler/osr-alignment': [PASS, NO_VARIANTS], | |
| 545 'compiler/osr-one': [PASS, NO_VARIANTS], | |
| 546 'compiler/osr-two': [PASS, NO_VARIANTS], | |
| 547 'stack-traces-overflow': [PASS, NO_VARIANTS], | |
| 548 'mirror-object': [PASS, NO_VARIANTS], | |
| 549 | |
| 538 # Bug(v8:2978). | 550 # Bug(v8:2978). |
| 539 'lithium/MathExp': [PASS, FAIL], | 551 'lithium/MathExp': [PASS, FAIL], |
| 540 | 552 |
| 541 # Lead to OOM: | 553 # Lead to OOM: |
| 542 'string-oom-*': [SKIP], | 554 'string-oom-*': [SKIP], |
| 543 | 555 |
| 544 # Crashes. | 556 # Crashes. |
| 545 'harmony/private': [SKIP], | 557 'harmony/private': [SKIP], |
| 546 'harmony/symbols': [SKIP], | 558 'harmony/symbols': [SKIP], |
| 547 }], # 'arch == nacl_ia32 or arch == nacl_x64' | 559 }], # 'arch == nacl_ia32 or arch == nacl_x64' |
| 548 | 560 |
| 549 ############################################################################## | 561 ############################################################################## |
| 550 ['deopt_fuzzer == True', { | 562 ['deopt_fuzzer == True', { |
| 551 | 563 |
| 552 # Skip tests that are not suitable for deoptimization fuzzing. | 564 # Skip tests that are not suitable for deoptimization fuzzing. |
| 553 'assert-opt-and-deopt': [SKIP], | 565 'assert-opt-and-deopt': [SKIP], |
| 554 'never-optimize': [SKIP], | 566 'never-optimize': [SKIP], |
| 555 'regress/regress-2185-2': [SKIP], | 567 'regress/regress-2185-2': [SKIP], |
| 556 'harmony/object-observe': [SKIP], | 568 'harmony/object-observe': [SKIP], |
| 557 'readonly': [SKIP], | 569 'readonly': [SKIP], |
| 558 'array-feedback': [SKIP], | 570 'array-feedback': [SKIP], |
| 559 | 571 |
| 560 # Deopt every n garbage collections collides with deopt every n times. | 572 # Deopt every n garbage collections collides with deopt every n times. |
| 561 'regress/regress-2653': [SKIP], | 573 'regress/regress-2653': [SKIP], |
| 562 }], # 'deopt_fuzzer == True' | 574 }], # 'deopt_fuzzer == True' |
| 563 ] | 575 ] |
| OLD | NEW |