| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 'regress/regress-1132': [SKIP], | 397 'regress/regress-1132': [SKIP], |
| 398 | 398 |
| 399 # Currently always deopt on minus zero | 399 # Currently always deopt on minus zero |
| 400 'math-floor-of-div-minus-zero': [SKIP], | 400 'math-floor-of-div-minus-zero': [SKIP], |
| 401 }], # 'arch == mips64el' | 401 }], # 'arch == mips64el' |
| 402 | 402 |
| 403 ['arch == mips64el and simulator_run == False', { | 403 ['arch == mips64el and simulator_run == False', { |
| 404 # Random failures on HW, need investigation. | 404 # Random failures on HW, need investigation. |
| 405 'debug-*': [SKIP], | 405 'debug-*': [SKIP], |
| 406 }], | 406 }], |
| 407 ############################################################################## |
| 408 ['system == windows', { |
| 409 # BUG(v8:3435) |
| 410 'debug-script-breakpoints': [PASS, FAIL], |
| 411 }], # 'system == windows' |
| 407 | 412 |
| 408 ############################################################################## | 413 ############################################################################## |
| 409 # Native Client uses the ARM simulator so will behave similarly to arm | 414 # Native Client uses the ARM simulator so will behave similarly to arm |
| 410 # on mjsunit tests. | 415 # on mjsunit tests. |
| 411 # TODO(bradchen): enable more tests for NaCl V8 when it stops using | 416 # TODO(bradchen): enable more tests for NaCl V8 when it stops using |
| 412 # the ARM simulator. | 417 # the ARM simulator. |
| 413 ############################################################################## | 418 ############################################################################## |
| 414 ['arch == nacl_ia32 or arch == nacl_x64', { | 419 ['arch == nacl_ia32 or arch == nacl_x64', { |
| 415 # There is no /tmp directory for NaCl runs | 420 # There is no /tmp directory for NaCl runs |
| 416 'd8-os': [SKIP], | 421 'd8-os': [SKIP], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 'never-optimize': [SKIP], | 461 'never-optimize': [SKIP], |
| 457 'regress/regress-2185-2': [SKIP], | 462 'regress/regress-2185-2': [SKIP], |
| 458 'harmony/object-observe': [SKIP], | 463 'harmony/object-observe': [SKIP], |
| 459 'readonly': [SKIP], | 464 'readonly': [SKIP], |
| 460 'array-feedback': [SKIP], | 465 'array-feedback': [SKIP], |
| 461 | 466 |
| 462 # Deopt every n garbage collections collides with deopt every n times. | 467 # Deopt every n garbage collections collides with deopt every n times. |
| 463 'regress/regress-2653': [SKIP], | 468 'regress/regress-2653': [SKIP], |
| 464 }], # 'deopt_fuzzer == True' | 469 }], # 'deopt_fuzzer == True' |
| 465 ] | 470 ] |
| OLD | NEW |