| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 175 |
| 176 # BUG(v8:3147). It works on other architectures by accident. | 176 # BUG(v8:3147). It works on other architectures by accident. |
| 177 'regress/regress-conditional-position': [FAIL], | 177 'regress/regress-conditional-position': [FAIL], |
| 178 | 178 |
| 179 # BUG(v8:3148): Invalid branch instruction emitted. | 179 # BUG(v8:3148): Invalid branch instruction emitted. |
| 180 'debug-references': [PASS, ['mode == debug', SKIP]], | 180 'debug-references': [PASS, ['mode == debug', SKIP]], |
| 181 'mirror-array': [PASS, ['mode == debug', SKIP]], | 181 'mirror-array': [PASS, ['mode == debug', SKIP]], |
| 182 | 182 |
| 183 # BUG(v8:3156): Fails on gc stress bots. | 183 # BUG(v8:3156): Fails on gc stress bots. |
| 184 'compiler/concurrent-invalidate-transition-map': [PASS, ['gc_stress == True',
FAIL]], | 184 'compiler/concurrent-invalidate-transition-map': [PASS, ['gc_stress == True',
FAIL]], |
| 185 # BUG(v8:3157): Fails on gc stress bots. | |
| 186 'sparse-array-reverse': [PASS, ['gc_stress == True', FAIL]], | |
| 187 | |
| 188 # BUG(v8:3158): Fails on no_snap debug bots. | |
| 189 'sparse-array-reverse': [PASS, ['mode == debug', FAIL]], | |
| 190 }], # 'arch == a64' | 185 }], # 'arch == a64' |
| 191 | 186 |
| 192 ['arch == a64 and mode == debug and simulator_run == True', { | 187 ['arch == a64 and mode == debug and simulator_run == True', { |
| 193 | 188 |
| 194 # Pass but take too long with the simulator in debug mode. | 189 # Pass but take too long with the simulator in debug mode. |
| 195 'array-sort': [PASS, TIMEOUT], | 190 'array-sort': [PASS, TIMEOUT], |
| 196 'packed-elements': [SKIP], | 191 'packed-elements': [SKIP], |
| 197 'regexp-global': [SKIP], | 192 'regexp-global': [SKIP], |
| 198 'compiler/alloc-numbers': [SKIP], | 193 'compiler/alloc-numbers': [SKIP], |
| 199 'harmony/symbols': [SKIP], | 194 'harmony/symbols': [SKIP], |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 'never-optimize': [SKIP], | 344 'never-optimize': [SKIP], |
| 350 'regress/regress-2185-2': [SKIP], | 345 'regress/regress-2185-2': [SKIP], |
| 351 'harmony/object-observe': [SKIP], | 346 'harmony/object-observe': [SKIP], |
| 352 'readonly': [SKIP], | 347 'readonly': [SKIP], |
| 353 'array-feedback': [SKIP], | 348 'array-feedback': [SKIP], |
| 354 | 349 |
| 355 # Deopt every n garbage collections collides with deopt every n times. | 350 # Deopt every n garbage collections collides with deopt every n times. |
| 356 'regress/regress-2653': [SKIP], | 351 'regress/regress-2653': [SKIP], |
| 357 }], # 'deopt_fuzzer == True' | 352 }], # 'deopt_fuzzer == True' |
| 358 ] | 353 ] |
| OLD | NEW |