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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], | 237 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], |
238 'math-floor-of-div': [PASS, NO_VARIANTS], | 238 'math-floor-of-div': [PASS, NO_VARIANTS], |
239 'unicodelctest': [PASS, NO_VARIANTS], | 239 'unicodelctest': [PASS, NO_VARIANTS], |
240 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 240 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
241 | 241 |
242 # Too slow for gc stress. | 242 # Too slow for gc stress. |
243 'asm/embenchen/box2d': [SKIP], | 243 'asm/embenchen/box2d': [SKIP], |
244 | 244 |
245 # Issue 3723. | 245 # Issue 3723. |
246 'regress/regress-3717': [SKIP], | 246 'regress/regress-3717': [SKIP], |
247 # Issue 3776. | |
248 'debug-constructor': [SKIP], | |
249 'debug-stepframe': [SKIP], | |
250 'debug-stepout-scope-part2': [SKIP], | |
251 'debug-stepout-scope-part5': [SKIP], | |
252 'debug-stepout-scope-part6': [SKIP], | |
253 }], # 'gc_stress == True' | 247 }], # 'gc_stress == True' |
254 | 248 |
255 ############################################################################## | 249 ############################################################################## |
256 ['byteorder == big', { | 250 ['byteorder == big', { |
257 # Emscripten requires little-endian, skip all tests on big endian platforms. | 251 # Emscripten requires little-endian, skip all tests on big endian platforms. |
258 'asm/embenchen/*': [SKIP], | 252 'asm/embenchen/*': [SKIP], |
259 }], # 'byteorder == big' | 253 }], # 'byteorder == big' |
260 | 254 |
261 ############################################################################## | 255 ############################################################################## |
262 ['arch == arm64 or arch == android_arm64', { | 256 ['arch == arm64 or arch == android_arm64', { |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 'never-optimize': [SKIP], | 580 'never-optimize': [SKIP], |
587 'regress/regress-2185-2': [SKIP], | 581 'regress/regress-2185-2': [SKIP], |
588 'harmony/object-observe': [SKIP], | 582 'harmony/object-observe': [SKIP], |
589 'readonly': [SKIP], | 583 'readonly': [SKIP], |
590 'array-feedback': [SKIP], | 584 'array-feedback': [SKIP], |
591 | 585 |
592 # Deopt every n garbage collections collides with deopt every n times. | 586 # Deopt every n garbage collections collides with deopt every n times. |
593 'regress/regress-2653': [SKIP], | 587 'regress/regress-2653': [SKIP], |
594 }], # 'deopt_fuzzer == True' | 588 }], # 'deopt_fuzzer == True' |
595 ] | 589 ] |
OLD | NEW |