| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 # This test non-deterministically runs out of memory on Windows ia32. | 48 # This test non-deterministically runs out of memory on Windows ia32. |
| 49 'regress/regress-crbug-160010': [SKIP], | 49 'regress/regress-crbug-160010': [SKIP], |
| 50 | 50 |
| 51 # Issue 3389: deopt_every_n_garbage_collections is unsafe | 51 # Issue 3389: deopt_every_n_garbage_collections is unsafe |
| 52 'regress/regress-2653': [SKIP], | 52 'regress/regress-2653': [SKIP], |
| 53 | 53 |
| 54 ############################################################################## | 54 ############################################################################## |
| 55 # TurboFan compiler failures. | 55 # TurboFan compiler failures. |
| 56 | 56 |
| 57 # TODO(jarin) We should truncate instead of change for some stores. | |
| 58 'compiler/truncating-store': [PASS, FAIL], | |
| 59 | |
| 60 # TODO(mstarzinger): An arguments object materialized in the prologue can't | 57 # TODO(mstarzinger): An arguments object materialized in the prologue can't |
| 61 # be accessed indirectly. Either we drop that requirement or wait for support | 58 # be accessed indirectly. Either we drop that requirement or wait for support |
| 62 # from the deoptimizer to do that. | 59 # from the deoptimizer to do that. |
| 63 'arguments-indirect': [PASS, NO_VARIANTS], | 60 'arguments-indirect': [PASS, NO_VARIANTS], |
| 64 | 61 |
| 65 # TODO(verwaest): Some tests are over-restrictive about object layout. | 62 # TODO(verwaest): Some tests are over-restrictive about object layout. |
| 66 'array-constructor-feedback': [PASS, NO_VARIANTS], | 63 'array-constructor-feedback': [PASS, NO_VARIANTS], |
| 67 'array-feedback': [PASS, NO_VARIANTS], | 64 'array-feedback': [PASS, NO_VARIANTS], |
| 68 'compare-known-objects-slow': [PASS, NO_VARIANTS], | 65 'compare-known-objects-slow': [PASS, NO_VARIANTS], |
| 69 'elements-kind': [PASS, NO_VARIANTS], | 66 'elements-kind': [PASS, NO_VARIANTS], |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 'never-optimize': [SKIP], | 576 'never-optimize': [SKIP], |
| 580 'regress/regress-2185-2': [SKIP], | 577 'regress/regress-2185-2': [SKIP], |
| 581 'harmony/object-observe': [SKIP], | 578 'harmony/object-observe': [SKIP], |
| 582 'readonly': [SKIP], | 579 'readonly': [SKIP], |
| 583 'array-feedback': [SKIP], | 580 'array-feedback': [SKIP], |
| 584 | 581 |
| 585 # Deopt every n garbage collections collides with deopt every n times. | 582 # Deopt every n garbage collections collides with deopt every n times. |
| 586 'regress/regress-2653': [SKIP], | 583 'regress/regress-2653': [SKIP], |
| 587 }], # 'deopt_fuzzer == True' | 584 }], # 'deopt_fuzzer == True' |
| 588 ] | 585 ] |
| OLD | NEW |