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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
278 | 278 |
279 # Too slow for gc stress. | 279 # Too slow for gc stress. |
280 'asm/embenchen/box2d': [SKIP], | 280 'asm/embenchen/box2d': [SKIP], |
281 | 281 |
282 # Issue 3723. | 282 # Issue 3723. |
283 'regress/regress-3717': [SKIP], | 283 'regress/regress-3717': [SKIP], |
284 # Issue 3924. | 284 # Issue 3924. |
285 'mjsunit/debug-clearbreakpointgroup': [SKIP], | 285 'mjsunit/debug-clearbreakpointgroup': [SKIP], |
286 # Issue 3969. | 286 # Issue 3969. |
287 'mjsunit/debug-references': [SKIP], | 287 'mjsunit/debug-references': [SKIP], |
288 # Issue 478788. | |
289 'mjsunit/es7/object-observe': [SKIP], | |
Michael Achenbach
2015/04/21 21:02:52
Hum - looking more closely: the prefix "mjsunit/"
adamk
2015/04/21 23:22:05
Has it been failing?
| |
288 }], # 'gc_stress == True' | 290 }], # 'gc_stress == True' |
289 | 291 |
290 ############################################################################## | 292 ############################################################################## |
291 ['byteorder == big', { | 293 ['byteorder == big', { |
292 # Emscripten requires little-endian, skip all tests on big endian platforms. | 294 # Emscripten requires little-endian, skip all tests on big endian platforms. |
293 'asm/embenchen/*': [SKIP], | 295 'asm/embenchen/*': [SKIP], |
294 }], # 'byteorder == big' | 296 }], # 'byteorder == big' |
295 | 297 |
296 ############################################################################## | 298 ############################################################################## |
297 ['arch == arm64 or arch == android_arm64', { | 299 ['arch == arm64 or arch == android_arm64', { |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
634 'regress/regress-2653': [SKIP], | 636 'regress/regress-2653': [SKIP], |
635 }], # 'deopt_fuzzer == True' | 637 }], # 'deopt_fuzzer == True' |
636 | 638 |
637 ############################################################################## | 639 ############################################################################## |
638 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', { | 640 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', { |
639 | 641 |
640 # take too long with the simulator. | 642 # take too long with the simulator. |
641 'regress/regress-1132': [SKIP], | 643 'regress/regress-1132': [SKIP], |
642 }], # 'arch == ppc and simulator_run == True' | 644 }], # 'arch == ppc and simulator_run == True' |
643 ] | 645 ] |
OLD | NEW |