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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
239 # Too slow for gc stress. | 239 # Too slow for gc stress. |
240 'asm/embenchen/box2d': [SKIP], | 240 'asm/embenchen/box2d': [SKIP], |
241 | 241 |
242 # Issue 3723. | 242 # Issue 3723. |
243 'regress/regress-3717': [SKIP], | 243 'regress/regress-3717': [SKIP], |
244 # Issue 3776. | 244 # Issue 3776. |
245 'debug-stepframe': [SKIP], | 245 'debug-stepframe': [SKIP], |
246 }], # 'gc_stress == True' | 246 }], # 'gc_stress == True' |
247 | 247 |
248 ############################################################################## | 248 ############################################################################## |
249 ['byteorder == big', { | |
250 # Emscripten requires little-endian, skip all tests on big endian platforms. | |
251 'asm/embenchen/*': [SKIP], | |
Sven Panne
2015/01/27 11:47:06
Do really all 9 embenchen tests fail on big-endian
michael_dawson
2015/01/29 00:08:29
All 9 tests specify that they assume LE
$ grep -i
Sven Panne
2015/01/29 09:54:33
*sigh* OK, just leave the SKIP here, Wintel legacy
| |
252 }], # 'byteorder == big' | |
253 | |
254 ############################################################################## | |
249 ['arch == arm64 or arch == android_arm64', { | 255 ['arch == arm64 or arch == android_arm64', { |
250 | 256 |
251 # arm64 TF timeout. | 257 # arm64 TF timeout. |
252 'regress/regress-1257': [PASS, TIMEOUT], | 258 'regress/regress-1257': [PASS, TIMEOUT], |
253 | 259 |
254 # Requires bigger stack size in the Genesis and if stack size is increased, | 260 # Requires bigger stack size in the Genesis and if stack size is increased, |
255 # the test requires too much time to run. However, the problem test covers | 261 # the test requires too much time to run. However, the problem test covers |
256 # should be platform-independent. | 262 # should be platform-independent. |
257 'regress/regress-1132': [SKIP], | 263 'regress/regress-1132': [SKIP], |
258 | 264 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
427 'regress/regress-1132': [SKIP], | 433 'regress/regress-1132': [SKIP], |
428 | 434 |
429 # Currently always deopt on minus zero | 435 # Currently always deopt on minus zero |
430 'math-floor-of-div-minus-zero': [SKIP], | 436 'math-floor-of-div-minus-zero': [SKIP], |
431 }], # 'arch == mipsel or arch == mips' | 437 }], # 'arch == mipsel or arch == mips' |
432 | 438 |
433 ############################################################################## | 439 ############################################################################## |
434 ['arch == mips', { | 440 ['arch == mips', { |
435 # Flaky with TF. | 441 # Flaky with TF. |
436 'mirror-script': [PASS, NO_VARIANTS], | 442 'mirror-script': [PASS, NO_VARIANTS], |
437 | |
438 # Emscripten requires little-endian, skip all tests on MIPS EB. | |
439 'asm/embenchen/*': [SKIP], | |
440 }], # 'arch == mips' | 443 }], # 'arch == mips' |
441 | 444 |
442 ############################################################################## | 445 ############################################################################## |
443 ['arch == mips64el', { | 446 ['arch == mips64el', { |
444 | 447 |
445 # Slow tests which times out in debug mode. | 448 # Slow tests which times out in debug mode. |
446 'try': [PASS, ['mode == debug', SKIP]], | 449 'try': [PASS, ['mode == debug', SKIP]], |
447 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 450 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
448 'array-constructor': [PASS, ['mode == debug', SKIP]], | 451 'array-constructor': [PASS, ['mode == debug', SKIP]], |
449 | 452 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
570 'never-optimize': [SKIP], | 573 'never-optimize': [SKIP], |
571 'regress/regress-2185-2': [SKIP], | 574 'regress/regress-2185-2': [SKIP], |
572 'harmony/object-observe': [SKIP], | 575 'harmony/object-observe': [SKIP], |
573 'readonly': [SKIP], | 576 'readonly': [SKIP], |
574 'array-feedback': [SKIP], | 577 'array-feedback': [SKIP], |
575 | 578 |
576 # Deopt every n garbage collections collides with deopt every n times. | 579 # Deopt every n garbage collections collides with deopt every n times. |
577 'regress/regress-2653': [SKIP], | 580 'regress/regress-2653': [SKIP], |
578 }], # 'deopt_fuzzer == True' | 581 }], # 'deopt_fuzzer == True' |
579 ] | 582 ] |
OLD | NEW |