| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'd8-performance-now': [SKIP], | 123 'd8-performance-now': [SKIP], |
| 124 'elements-kind': [SKIP], | 124 'elements-kind': [SKIP], |
| 125 'fast-prototype': [SKIP], | 125 'fast-prototype': [SKIP], |
| 126 'opt-elements-kind': [SKIP], | 126 'opt-elements-kind': [SKIP], |
| 127 'osr-elements-kind': [SKIP], | 127 'osr-elements-kind': [SKIP], |
| 128 'regress/regress-165637': [SKIP], | 128 'regress/regress-165637': [SKIP], |
| 129 'regress/regress-2249': [SKIP], | 129 'regress/regress-2249': [SKIP], |
| 130 }], # 'gc_stress == True' | 130 }], # 'gc_stress == True' |
| 131 | 131 |
| 132 ############################################################################## | 132 ############################################################################## |
| 133 ['asan == True', { |
| 134 # Skip tests not suitable for ASAN. |
| 135 'big-array-literal': [SKIP], |
| 136 'big-object-literal': [SKIP], |
| 137 'regress/regress-crbug-178790': [SKIP], |
| 138 }], # 'asan == True' |
| 139 |
| 140 ############################################################################## |
| 133 ['arch == arm or arch == android_arm', { | 141 ['arch == arm or arch == android_arm', { |
| 134 | 142 |
| 135 # Slow tests which times out in debug mode. | 143 # Slow tests which times out in debug mode. |
| 136 'try': [PASS, ['mode == debug', SKIP]], | 144 'try': [PASS, ['mode == debug', SKIP]], |
| 137 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 145 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
| 138 'array-constructor': [PASS, ['mode == debug', SKIP]], | 146 'array-constructor': [PASS, ['mode == debug', SKIP]], |
| 139 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], | 147 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], |
| 140 | 148 |
| 141 # Flaky test that can hit compilation-time stack overflow in debug mode. | 149 # Flaky test that can hit compilation-time stack overflow in debug mode. |
| 142 'unicode-test': [PASS, ['mode == debug', PASS, FAIL]], | 150 'unicode-test': [PASS, ['mode == debug', PASS, FAIL]], |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'never-optimize': [SKIP], | 279 'never-optimize': [SKIP], |
| 272 'regress/regress-2185-2': [SKIP], | 280 'regress/regress-2185-2': [SKIP], |
| 273 'harmony/object-observe': [SKIP], | 281 'harmony/object-observe': [SKIP], |
| 274 'readonly': [SKIP], | 282 'readonly': [SKIP], |
| 275 'array-feedback': [SKIP], | 283 'array-feedback': [SKIP], |
| 276 | 284 |
| 277 # Deopt every n garbage collections collides with deopt every n times. | 285 # Deopt every n garbage collections collides with deopt every n times. |
| 278 'regress/regress-2653': [SKIP], | 286 'regress/regress-2653': [SKIP], |
| 279 }], # 'deopt_fuzzer == True' | 287 }], # 'deopt_fuzzer == True' |
| 280 ] | 288 ] |
| OLD | NEW |