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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ############################################################################## | 108 ############################################################################## |
109 # Tests with different versions for release and debug. | 109 # Tests with different versions for release and debug. |
110 'compiler/alloc-number': [PASS, ['mode == debug', SKIP]], | 110 'compiler/alloc-number': [PASS, ['mode == debug', SKIP]], |
111 'compiler/alloc-number-debug': [PASS, ['mode == release', SKIP]], | 111 'compiler/alloc-number-debug': [PASS, ['mode == release', SKIP]], |
112 'regress/regress-634': [PASS, ['mode == debug', SKIP]], | 112 'regress/regress-634': [PASS, ['mode == debug', SKIP]], |
113 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], | 113 'regress/regress-634-debug': [PASS, ['mode == release', SKIP]], |
| 114 |
| 115 # BUG(336820). TODO(bmeurer): Investigate. |
| 116 'regress/regress-336820': [PASS, FAIL], |
114 }], # ALWAYS | 117 }], # ALWAYS |
115 | 118 |
116 ############################################################################## | 119 ############################################################################## |
117 ['gc_stress == True', { | 120 ['gc_stress == True', { |
118 # Skip tests not suitable for GC stress. | 121 # Skip tests not suitable for GC stress. |
119 'allocation-site-info': [SKIP], | 122 'allocation-site-info': [SKIP], |
120 'array-constructor-feedback': [SKIP], | 123 'array-constructor-feedback': [SKIP], |
121 'array-feedback': [SKIP], | 124 'array-feedback': [SKIP], |
122 'array-literal-feedback': [SKIP], | 125 'array-literal-feedback': [SKIP], |
123 'd8-performance-now': [SKIP], | 126 'd8-performance-now': [SKIP], |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 'never-optimize': [SKIP], | 282 'never-optimize': [SKIP], |
280 'regress/regress-2185-2': [SKIP], | 283 'regress/regress-2185-2': [SKIP], |
281 'harmony/object-observe': [SKIP], | 284 'harmony/object-observe': [SKIP], |
282 'readonly': [SKIP], | 285 'readonly': [SKIP], |
283 'array-feedback': [SKIP], | 286 'array-feedback': [SKIP], |
284 | 287 |
285 # Deopt every n garbage collections collides with deopt every n times. | 288 # Deopt every n garbage collections collides with deopt every n times. |
286 'regress/regress-2653': [SKIP], | 289 'regress/regress-2653': [SKIP], |
287 }], # 'deopt_fuzzer == True' | 290 }], # 'deopt_fuzzer == True' |
288 ] | 291 ] |
OLD | NEW |