| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 ['system == windows', { | 505 ['system == windows', { |
| 506 # TODO(mstarzinger): Too slow with turbo fan. | 506 # TODO(mstarzinger): Too slow with turbo fan. |
| 507 'big-object-literal': [PASS, ['mode == debug', SKIP]], | 507 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
| 508 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], | 508 'math-floor-of-div': [PASS, ['mode == debug', SKIP]], |
| 509 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], | 509 'math-floor-of-div-nosudiv': [PASS, ['mode == debug', SKIP]], |
| 510 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], | 510 'osr-regress-max-locals': [PASS, ['mode == debug', SKIP]], |
| 511 'unicodelctest': [PASS, ['mode == debug', SKIP]], | 511 'unicodelctest': [PASS, ['mode == debug', SKIP]], |
| 512 | 512 |
| 513 # BUG(v8:3435) | 513 # BUG(v8:3435) |
| 514 'debug-script-breakpoints': [PASS, FAIL], | 514 'debug-script-breakpoints': [PASS, FAIL], |
| 515 | |
| 516 # BUG(v8:3815). TODO(arv): Investigate. | |
| 517 'harmony/computed-property-names': [SKIP] | |
| 518 }], # 'system == windows' | 515 }], # 'system == windows' |
| 519 | 516 |
| 520 ############################################################################## | 517 ############################################################################## |
| 521 # Native Client uses the ARM simulator so will behave similarly to arm | 518 # Native Client uses the ARM simulator so will behave similarly to arm |
| 522 # on mjsunit tests. | 519 # on mjsunit tests. |
| 523 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | 520 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
| 524 # the ARM simulator. | 521 # the ARM simulator. |
| 525 ############################################################################## | 522 ############################################################################## |
| 526 ['arch == nacl_ia32 or arch == nacl_x64', { | 523 ['arch == nacl_ia32 or arch == nacl_x64', { |
| 527 # There is no /tmp directory for NaCl runs | 524 # There is no /tmp directory for NaCl runs |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 'never-optimize': [SKIP], | 577 'never-optimize': [SKIP], |
| 581 'regress/regress-2185-2': [SKIP], | 578 'regress/regress-2185-2': [SKIP], |
| 582 'harmony/object-observe': [SKIP], | 579 'harmony/object-observe': [SKIP], |
| 583 'readonly': [SKIP], | 580 'readonly': [SKIP], |
| 584 'array-feedback': [SKIP], | 581 'array-feedback': [SKIP], |
| 585 | 582 |
| 586 # Deopt every n garbage collections collides with deopt every n times. | 583 # Deopt every n garbage collections collides with deopt every n times. |
| 587 'regress/regress-2653': [SKIP], | 584 'regress/regress-2653': [SKIP], |
| 588 }], # 'deopt_fuzzer == True' | 585 }], # 'deopt_fuzzer == True' |
| 589 ] | 586 ] |
| OLD | NEW |