| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], | 286 'compiler/osr-regress-max-locals': [PASS, NO_VARIANTS], |
| 287 'math-floor-of-div': [PASS, NO_VARIANTS], | 287 'math-floor-of-div': [PASS, NO_VARIANTS], |
| 288 'unicodelctest': [PASS, NO_VARIANTS], | 288 'unicodelctest': [PASS, NO_VARIANTS], |
| 289 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 289 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
| 290 | 290 |
| 291 # Too slow for gc stress. | 291 # Too slow for gc stress. |
| 292 'asm/embenchen/box2d': [SKIP], | 292 'asm/embenchen/box2d': [SKIP], |
| 293 | 293 |
| 294 # Issue 3723. | 294 # Issue 3723. |
| 295 'regress/regress-3717': [SKIP], | 295 'regress/regress-3717': [SKIP], |
| 296 # Issue 3924. | |
| 297 'mjsunit/debug-clearbreakpointgroup': [SKIP], | |
| 298 # Issue 3969. | |
| 299 'mjsunit/debug-references': [SKIP], | |
| 300 # Issue 478788. | 296 # Issue 478788. |
| 301 'mjsunit/es7/object-observe': [SKIP], | 297 'es7/object-observe': [SKIP], |
| 302 }], # 'gc_stress == True' | 298 }], # 'gc_stress == True' |
| 303 | 299 |
| 304 ############################################################################## | 300 ############################################################################## |
| 305 ['byteorder == big', { | 301 ['byteorder == big', { |
| 306 # Emscripten requires little-endian, skip all tests on big endian platforms. | 302 # Emscripten requires little-endian, skip all tests on big endian platforms. |
| 307 'asm/embenchen/*': [SKIP], | 303 'asm/embenchen/*': [SKIP], |
| 308 }], # 'byteorder == big' | 304 }], # 'byteorder == big' |
| 309 | 305 |
| 310 ############################################################################## | 306 ############################################################################## |
| 311 ['arch == arm64 or arch == android_arm64', { | 307 ['arch == arm64 or arch == android_arm64', { |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 'regress/regress-2653': [SKIP], | 644 'regress/regress-2653': [SKIP], |
| 649 }], # 'deopt_fuzzer == True' | 645 }], # 'deopt_fuzzer == True' |
| 650 | 646 |
| 651 ############################################################################## | 647 ############################################################################## |
| 652 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { | 648 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr
ue', { |
| 653 | 649 |
| 654 # take too long with the simulator. | 650 # take too long with the simulator. |
| 655 'regress/regress-1132': [SKIP], | 651 'regress/regress-1132': [SKIP], |
| 656 }], # 'arch == ppc and simulator_run == True' | 652 }], # 'arch == ppc and simulator_run == True' |
| 657 ] | 653 ] |
| OLD | NEW |