| 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 # Currently always deopt on minus zero | 503 # Currently always deopt on minus zero |
| 504 'math-floor-of-div-minus-zero': [SKIP], | 504 'math-floor-of-div-minus-zero': [SKIP], |
| 505 }], # 'arch == mips64el' | 505 }], # 'arch == mips64el' |
| 506 | 506 |
| 507 ['arch == mips64el and simulator_run == False', { | 507 ['arch == mips64el and simulator_run == False', { |
| 508 # Random failures on HW, need investigation. | 508 # Random failures on HW, need investigation. |
| 509 'debug-*': [SKIP], | 509 'debug-*': [SKIP], |
| 510 }], | 510 }], |
| 511 ############################################################################## | 511 ############################################################################## |
| 512 ['system == windows', { | 512 ['system == windows', { |
| 513 # Slow with turbo fan. | 513 # TODO(mstarzinger): Too slow with turbo fan. |
| 514 'big-object-literal': [PASS, SLOW], | 514 'big-object-literal': [PASS, ['mode == debug', SKIP]], |
| 515 | 515 |
| 516 # BUG(v8:3435) | 516 # BUG(v8:3435) |
| 517 'debug-script-breakpoints': [PASS, FAIL], | 517 'debug-script-breakpoints': [PASS, FAIL], |
| 518 }], # 'system == windows' | 518 }], # 'system == windows' |
| 519 | 519 |
| 520 ############################################################################## | 520 ############################################################################## |
| 521 # Native Client uses the ARM simulator so will behave similarly to arm | 521 # Native Client uses the ARM simulator so will behave similarly to arm |
| 522 # on mjsunit tests. | 522 # on mjsunit tests. |
| 523 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | 523 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
| 524 # the ARM simulator. | 524 # the ARM simulator. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 'never-optimize': [SKIP], | 568 'never-optimize': [SKIP], |
| 569 'regress/regress-2185-2': [SKIP], | 569 'regress/regress-2185-2': [SKIP], |
| 570 'harmony/object-observe': [SKIP], | 570 'harmony/object-observe': [SKIP], |
| 571 'readonly': [SKIP], | 571 'readonly': [SKIP], |
| 572 'array-feedback': [SKIP], | 572 'array-feedback': [SKIP], |
| 573 | 573 |
| 574 # Deopt every n garbage collections collides with deopt every n times. | 574 # Deopt every n garbage collections collides with deopt every n times. |
| 575 'regress/regress-2653': [SKIP], | 575 'regress/regress-2653': [SKIP], |
| 576 }], # 'deopt_fuzzer == True' | 576 }], # 'deopt_fuzzer == True' |
| 577 ] | 577 ] |
| OLD | NEW |