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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 107 |
108 # TODO(machenbach): Temporarily marked as flaky until there is infrastructure | 108 # TODO(machenbach): Temporarily marked as flaky until there is infrastructure |
109 # to disable these tests on GC stress. | 109 # to disable these tests on GC stress. |
110 'elements-kind': [PASS, ['mode == debug and system == linux', FLAKY]], | 110 'elements-kind': [PASS, ['mode == debug and system == linux', FLAKY]], |
111 'osr-elements-kind': [PASS, ['mode == debug and system == linux', FLAKY]], | 111 'osr-elements-kind': [PASS, ['mode == debug and system == linux', FLAKY]], |
| 112 'array-literal-feedback': [PASS, ['mode == debug and system == linux', FLAKY]]
, |
112 }], # ALWAYS | 113 }], # ALWAYS |
113 | 114 |
114 ############################################################################## | 115 ############################################################################## |
115 ['arch == arm or arch == android_arm', { | 116 ['arch == arm or arch == android_arm', { |
116 | 117 |
117 # Slow tests which times out in debug mode. | 118 # Slow tests which times out in debug mode. |
118 'try': [PASS, ['mode == debug', SKIP]], | 119 'try': [PASS, ['mode == debug', SKIP]], |
119 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 120 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
120 'array-constructor': [PASS, ['mode == debug', SKIP]], | 121 'array-constructor': [PASS, ['mode == debug', SKIP]], |
121 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], | 122 'regress/regress-1122': [PASS, ['mode == debug and arch == android_arm', SKIP]
], |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 'never-optimize': [SKIP], | 290 'never-optimize': [SKIP], |
290 'regress/regress-2185-2': [SKIP], | 291 'regress/regress-2185-2': [SKIP], |
291 'harmony/object-observe': [SKIP], | 292 'harmony/object-observe': [SKIP], |
292 'readonly': [SKIP], | 293 'readonly': [SKIP], |
293 'array-feedback': [SKIP], | 294 'array-feedback': [SKIP], |
294 | 295 |
295 # Deopt every n garbage collections collides with deopt every n times. | 296 # Deopt every n garbage collections collides with deopt every n times. |
296 'regress/regress-2653': [SKIP], | 297 'regress/regress-2653': [SKIP], |
297 }], # 'deopt_fuzzer == True' | 298 }], # 'deopt_fuzzer == True' |
298 ] | 299 ] |
OLD | NEW |