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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'tools/tickprocessor': [PASS, ['arch == android_arm or arch == android_ia32',
SKIP]], | 97 'tools/tickprocessor': [PASS, ['arch == android_arm or arch == android_ia32',
SKIP]], |
98 | 98 |
99 ############################################################################## | 99 ############################################################################## |
100 # Long running test that reproduces memory leak and should be run manually. | 100 # Long running test that reproduces memory leak and should be run manually. |
101 'regress/regress-2073': [SKIP], | 101 'regress/regress-2073': [SKIP], |
102 | 102 |
103 ############################################################################## | 103 ############################################################################## |
104 # Tests verifying CHECK and ASSERT. | 104 # Tests verifying CHECK and ASSERT. |
105 'verify-check-false': [FAIL, NO_VARIANTS], | 105 'verify-check-false': [FAIL, NO_VARIANTS], |
106 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], | 106 'verify-assert-false': [NO_VARIANTS, ['mode == release', PASS], ['mode == debu
g', FAIL]], |
| 107 }], # ALWAYS |
107 | 108 |
108 # TODO(machenbach): Temporarily marked as flaky until there is infrastructure | 109 ############################################################################## |
109 # to disable these tests on GC stress. | 110 ['gc_stress == True', { |
110 'elements-kind': [PASS, ['mode == debug and system == linux', FLAKY]], | 111 # Skip tests not suitable for GC stress. |
111 'osr-elements-kind': [PASS, ['mode == debug and system == linux', FLAKY]], | 112 'allocation-site-info': [SKIP], |
112 'array-literal-feedback': [PASS, ['mode == debug and system == linux', FLAKY]]
, | 113 'array-constructor-feedback': [SKIP], |
113 }], # ALWAYS | 114 'array-feedback': [SKIP], |
| 115 'array-literal-feedback': [SKIP], |
| 116 'd8-performance-now': [SKIP], |
| 117 'elements-kind': [SKIP], |
| 118 'fast-prototype': [SKIP], |
| 119 'opt-elements-kind': [SKIP], |
| 120 'osr-elements-kind': [SKIP], |
| 121 'regress/regress-165637': [SKIP], |
| 122 'regress/regress-2249': [SKIP], |
| 123 }], # 'gc_stress == True' |
114 | 124 |
115 ############################################################################## | 125 ############################################################################## |
116 ['arch == arm or arch == android_arm', { | 126 ['arch == arm or arch == android_arm', { |
117 | 127 |
118 # Slow tests which times out in debug mode. | 128 # Slow tests which times out in debug mode. |
119 'try': [PASS, ['mode == debug', SKIP]], | 129 'try': [PASS, ['mode == debug', SKIP]], |
120 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 130 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
121 'array-constructor': [PASS, ['mode == debug', SKIP]], | 131 'array-constructor': [PASS, ['mode == debug', SKIP]], |
122 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], | 132 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], |
123 | 133 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 'never-optimize': [SKIP], | 300 'never-optimize': [SKIP], |
291 'regress/regress-2185-2': [SKIP], | 301 'regress/regress-2185-2': [SKIP], |
292 'harmony/object-observe': [SKIP], | 302 'harmony/object-observe': [SKIP], |
293 'readonly': [SKIP], | 303 'readonly': [SKIP], |
294 'array-feedback': [SKIP], | 304 'array-feedback': [SKIP], |
295 | 305 |
296 # Deopt every n garbage collections collides with deopt every n times. | 306 # Deopt every n garbage collections collides with deopt every n times. |
297 'regress/regress-2653': [SKIP], | 307 'regress/regress-2653': [SKIP], |
298 }], # 'deopt_fuzzer == True' | 308 }], # 'deopt_fuzzer == True' |
299 ] | 309 ] |
OLD | NEW |