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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'unicodelctest': [PASS, NO_VARIANTS], | 284 'unicodelctest': [PASS, NO_VARIANTS], |
285 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 285 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
286 | 286 |
287 # Too slow for gc stress. | 287 # Too slow for gc stress. |
288 'asm/embenchen/box2d': [SKIP], | 288 'asm/embenchen/box2d': [SKIP], |
289 | 289 |
290 # Issue 3723. | 290 # Issue 3723. |
291 'regress/regress-3717': [SKIP], | 291 'regress/regress-3717': [SKIP], |
292 # Issue 478788. | 292 # Issue 478788. |
293 'es7/object-observe': [SKIP], | 293 'es7/object-observe': [SKIP], |
| 294 |
| 295 # Issue 3803. |
| 296 'es6/generators-iteration': [PASS, FLAKY], |
294 }], # 'gc_stress == True' | 297 }], # 'gc_stress == True' |
295 | 298 |
296 ############################################################################## | 299 ############################################################################## |
297 ['byteorder == big', { | 300 ['byteorder == big', { |
298 # Emscripten requires little-endian, skip all tests on big endian platforms. | 301 # Emscripten requires little-endian, skip all tests on big endian platforms. |
299 'asm/embenchen/*': [SKIP], | 302 'asm/embenchen/*': [SKIP], |
300 'asm/poppler/*': [SKIP], | 303 'asm/poppler/*': [SKIP], |
301 'asm/sqlite3/*': [SKIP], | 304 'asm/sqlite3/*': [SKIP], |
302 }], # 'byteorder == big' | 305 }], # 'byteorder == big' |
303 | 306 |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 'regress/regress-2653': [SKIP], | 656 'regress/regress-2653': [SKIP], |
654 }], # 'deopt_fuzzer == True' | 657 }], # 'deopt_fuzzer == True' |
655 | 658 |
656 ############################################################################## | 659 ############################################################################## |
657 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 660 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
658 | 661 |
659 # take too long with the simulator. | 662 # take too long with the simulator. |
660 'regress/regress-1132': [SKIP], | 663 'regress/regress-1132': [SKIP], |
661 }], # 'arch == ppc and simulator_run == True' | 664 }], # 'arch == ppc and simulator_run == True' |
662 ] | 665 ] |
OLD | NEW |