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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 }], # 'arch == mips64el' | 464 }], # 'arch == mips64el' |
465 | 465 |
466 ['arch == mips64el and simulator_run == False', { | 466 ['arch == mips64el and simulator_run == False', { |
467 # Random failures on HW, need investigation. | 467 # Random failures on HW, need investigation. |
468 'debug-*': [SKIP], | 468 'debug-*': [SKIP], |
469 }], | 469 }], |
470 ############################################################################## | 470 ############################################################################## |
471 ['system == windows', { | 471 ['system == windows', { |
472 # TODO(mstarzinger): Too slow with turbo fan. | 472 # TODO(mstarzinger): Too slow with turbo fan. |
473 'big-object-literal': [PASS, ['mode == debug', SKIP]], | 473 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
| 474 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], |
| 475 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], |
| 476 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], |
| 477 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
474 | 478 |
475 # BUG(v8:3435) | 479 # BUG(v8:3435) |
476 'debug-script-breakpoints': [PASS, FAIL], | 480 'debug-script-breakpoints': [PASS, FAIL], |
477 }], # 'system == windows' | 481 }], # 'system == windows' |
478 | 482 |
479 ############################################################################## | 483 ############################################################################## |
480 # Native Client uses the ARM simulator so will behave similarly to arm | 484 # Native Client uses the ARM simulator so will behave similarly to arm |
481 # on mjsunit tests. | 485 # on mjsunit tests. |
482 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | 486 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
483 # the ARM simulator. | 487 # the ARM simulator. |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 'never-optimize': [SKIP], | 543 'never-optimize': [SKIP], |
540 'regress/regress-2185-2': [SKIP], | 544 'regress/regress-2185-2': [SKIP], |
541 'harmony/object-observe': [SKIP], | 545 'harmony/object-observe': [SKIP], |
542 'readonly': [SKIP], | 546 'readonly': [SKIP], |
543 'array-feedback': [SKIP], | 547 'array-feedback': [SKIP], |
544 | 548 |
545 # Deopt every n garbage collections collides with deopt every n times. | 549 # Deopt every n garbage collections collides with deopt every n times. |
546 'regress/regress-2653': [SKIP], | 550 'regress/regress-2653': [SKIP], |
547 }], # 'deopt_fuzzer == True' | 551 }], # 'deopt_fuzzer == True' |
548 ] | 552 ] |
OLD | NEW |