| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 # from the deoptimizer to do that. | 59 # from the deoptimizer to do that. |
| 60 'arguments-indirect': [PASS, NO_VARIANTS], | 60 'arguments-indirect': [PASS, NO_VARIANTS], |
| 61 | 61 |
| 62 # TODO(mstarzinger): Sometimes the try-catch blacklist fails. | 62 # TODO(mstarzinger): Sometimes the try-catch blacklist fails. |
| 63 'debug-references': [PASS, NO_VARIANTS], | 63 'debug-references': [PASS, NO_VARIANTS], |
| 64 'regress/regress-263': [PASS, NO_VARIANTS], | 64 'regress/regress-263': [PASS, NO_VARIANTS], |
| 65 | 65 |
| 66 # Some tests are over-restrictive about object layout. | 66 # Some tests are over-restrictive about object layout. |
| 67 'array-constructor-feedback': [PASS, NO_VARIANTS], | 67 'array-constructor-feedback': [PASS, NO_VARIANTS], |
| 68 'array-feedback': [PASS, NO_VARIANTS], | 68 'array-feedback': [PASS, NO_VARIANTS], |
| 69 'fast-non-keyed': [PASS, NO_VARIANTS], | |
| 70 'track-fields': [PASS, NO_VARIANTS], | |
| 71 | 69 |
| 72 # Some tests are just too slow to run for now. | 70 # Some tests are just too slow to run for now. |
| 73 'big-object-literal': [PASS, NO_VARIANTS], | 71 'big-object-literal': [PASS, NO_VARIANTS], |
| 74 'bit-not': [PASS, NO_VARIANTS], | 72 'bit-not': [PASS, NO_VARIANTS], |
| 75 'json2': [PASS, NO_VARIANTS], | 73 'json2': [PASS, NO_VARIANTS], |
| 76 'packed-elements': [PASS, NO_VARIANTS], | 74 'packed-elements': [PASS, NO_VARIANTS], |
| 77 'unbox-double-arrays': [PASS, NO_VARIANTS], | 75 'unbox-double-arrays': [PASS, NO_VARIANTS], |
| 78 'whitespaces': [PASS, NO_VARIANTS], | 76 'whitespaces': [PASS, NO_VARIANTS], |
| 79 'compiler/optimized-for-in': [PASS, NO_VARIANTS], | 77 'compiler/optimized-for-in': [PASS, NO_VARIANTS], |
| 80 'compiler/osr-assert': [PASS, NO_VARIANTS], | 78 'compiler/osr-assert': [PASS, NO_VARIANTS], |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 'never-optimize': [SKIP], | 587 'never-optimize': [SKIP], |
| 590 'regress/regress-2185-2': [SKIP], | 588 'regress/regress-2185-2': [SKIP], |
| 591 'harmony/object-observe': [SKIP], | 589 'harmony/object-observe': [SKIP], |
| 592 'readonly': [SKIP], | 590 'readonly': [SKIP], |
| 593 'array-feedback': [SKIP], | 591 'array-feedback': [SKIP], |
| 594 | 592 |
| 595 # Deopt every n garbage collections collides with deopt every n times. | 593 # Deopt every n garbage collections collides with deopt every n times. |
| 596 'regress/regress-2653': [SKIP], | 594 'regress/regress-2653': [SKIP], |
| 597 }], # 'deopt_fuzzer == True' | 595 }], # 'deopt_fuzzer == True' |
| 598 ] | 596 ] |
| OLD | NEW |