| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 # Long running test that reproduces memory leak and should be run manually. | 101 # Long running test that reproduces memory leak and should be run manually. |
| 102 'regress/regress-2073': [SKIP], | 102 'regress/regress-2073': [SKIP], |
| 103 | 103 |
| 104 ############################################################################## | 104 ############################################################################## |
| 105 # Tests verifying CHECK and ASSERT. | 105 # Tests verifying CHECK and ASSERT. |
| 106 'verify-check-false': [FAIL, NO_VARIANTS], | 106 'verify-check-false': [FAIL, NO_VARIANTS], |
| 107 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], | 107 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], |
| 108 }], # ALWAYS | 108 }], # ALWAYS |
| 109 | 109 |
| 110 ############################################################################## | 110 ############################################################################## |
| 111 ['gc_stress == True', { |
| 112 # Skip tests not suitable for GC stress. |
| 113 'allocation-site-info': [SKIP], |
| 114 'array-constructor-feedback': [SKIP], |
| 115 'array-feedback': [SKIP], |
| 116 'array-literal-feedback': [SKIP], |
| 117 'd8-performance-now': [SKIP], |
| 118 'elements-kind': [SKIP], |
| 119 'fast-prototype': [SKIP], |
| 120 'opt-elements-kind': [SKIP], |
| 121 'osr-elements-kind': [SKIP], |
| 122 'regress/regress-165637': [SKIP], |
| 123 'regress/regress-2249': [SKIP], |
| 124 }], # 'gc_stress == True' |
| 125 |
| 126 ############################################################################## |
| 111 ['arch == a64', { | 127 ['arch == a64', { |
| 112 | 128 |
| 113 # Requires bigger stack size in the Genesis and if stack size is increased, | 129 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 114 # the test requires too much time to run. However, the problem test covers | 130 # the test requires too much time to run. However, the problem test covers |
| 115 # should be platform-independent. | 131 # should be platform-independent. |
| 116 'regress/regress-1132': [SKIP], | 132 'regress/regress-1132': [SKIP], |
| 117 | 133 |
| 118 # Pass but take too long to run. Skip. | 134 # Pass but take too long to run. Skip. |
| 119 # Some similar tests (with fewer iterations) may be included in a64-js tests. | 135 # Some similar tests (with fewer iterations) may be included in a64-js tests. |
| 120 'compiler/regress-arguments': [SKIP], | 136 'compiler/regress-arguments': [SKIP], |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 'never-optimize': [SKIP], | 348 'never-optimize': [SKIP], |
| 333 'regress/regress-2185-2': [SKIP], | 349 'regress/regress-2185-2': [SKIP], |
| 334 'harmony/object-observe': [SKIP], | 350 'harmony/object-observe': [SKIP], |
| 335 'readonly': [SKIP], | 351 'readonly': [SKIP], |
| 336 'array-feedback': [SKIP], | 352 'array-feedback': [SKIP], |
| 337 | 353 |
| 338 # Deopt every n garbage collections collides with the deopt every n times flag
. | 354 # Deopt every n garbage collections collides with the deopt every n times flag
. |
| 339 'regress/regress-2653': [SKIP], | 355 'regress/regress-2653': [SKIP], |
| 340 }], # 'deopt_fuzzer == True' | 356 }], # 'deopt_fuzzer == True' |
| 341 ] | 357 ] |
| OLD | NEW |