| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 'regress/regress-create-exception': [SKIP], | 459 'regress/regress-create-exception': [SKIP], |
| 460 'regress/regress-3247124': [SKIP], | 460 'regress/regress-3247124': [SKIP], |
| 461 | 461 |
| 462 # Requires bigger stack size in the Genesis and if stack size is increased, | 462 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 463 # the test requires too much time to run. However, the problem test covers | 463 # the test requires too much time to run. However, the problem test covers |
| 464 # should be platform-independent. | 464 # should be platform-independent. |
| 465 'regress/regress-1132': [SKIP], | 465 'regress/regress-1132': [SKIP], |
| 466 | 466 |
| 467 # Currently always deopt on minus zero | 467 # Currently always deopt on minus zero |
| 468 'math-floor-of-div-minus-zero': [SKIP], | 468 'math-floor-of-div-minus-zero': [SKIP], |
| 469 | |
| 470 # BUG(v8:3457). | |
| 471 'deserialize-reference': [SKIP], | |
| 472 }], # 'arch == mipsel or arch == mips' | 469 }], # 'arch == mipsel or arch == mips' |
| 473 | 470 |
| 474 ############################################################################## | 471 ############################################################################## |
| 475 ['arch == mips64el', { | 472 ['arch == mips64el', { |
| 476 | 473 |
| 477 # Slow tests which times out in debug mode. | 474 # Slow tests which times out in debug mode. |
| 478 'try': [PASS, ['mode == debug', SKIP]], | 475 'try': [PASS, ['mode == debug', SKIP]], |
| 479 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], | 476 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], |
| 480 'array-constructor': [PASS, ['mode == debug', SKIP]], | 477 'array-constructor': [PASS, ['mode == debug', SKIP]], |
| 481 | 478 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 'regress/regress-3218915': [PASS, SLOW], | 510 'regress/regress-3218915': [PASS, SLOW], |
| 514 'regress/regress-3247124': [PASS, SLOW], | 511 'regress/regress-3247124': [PASS, SLOW], |
| 515 | 512 |
| 516 # Requires bigger stack size in the Genesis and if stack size is increased, | 513 # Requires bigger stack size in the Genesis and if stack size is increased, |
| 517 # the test requires too much time to run. However, the problem test covers | 514 # the test requires too much time to run. However, the problem test covers |
| 518 # should be platform-independent. | 515 # should be platform-independent. |
| 519 'regress/regress-1132': [SKIP], | 516 'regress/regress-1132': [SKIP], |
| 520 | 517 |
| 521 # Currently always deopt on minus zero | 518 # Currently always deopt on minus zero |
| 522 'math-floor-of-div-minus-zero': [SKIP], | 519 'math-floor-of-div-minus-zero': [SKIP], |
| 523 | |
| 524 # BUG(v8:3457). | |
| 525 'deserialize-reference': [SKIP], | |
| 526 }], # 'arch == mips64el' | 520 }], # 'arch == mips64el' |
| 527 | 521 |
| 528 ['arch == mips64el and simulator_run == False', { | 522 ['arch == mips64el and simulator_run == False', { |
| 529 # Random failures on HW, need investigation. | 523 # Random failures on HW, need investigation. |
| 530 'debug-*': [SKIP], | 524 'debug-*': [SKIP], |
| 531 }], | 525 }], |
| 532 ############################################################################## | 526 ############################################################################## |
| 533 ['system == windows', { | 527 ['system == windows', { |
| 534 # BUG(v8:3435) | 528 # BUG(v8:3435) |
| 535 'debug-script-breakpoints': [PASS, FAIL], | 529 'debug-script-breakpoints': [PASS, FAIL], |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 'never-optimize': [SKIP], | 580 'never-optimize': [SKIP], |
| 587 'regress/regress-2185-2': [SKIP], | 581 'regress/regress-2185-2': [SKIP], |
| 588 'harmony/object-observe': [SKIP], | 582 'harmony/object-observe': [SKIP], |
| 589 'readonly': [SKIP], | 583 'readonly': [SKIP], |
| 590 'array-feedback': [SKIP], | 584 'array-feedback': [SKIP], |
| 591 | 585 |
| 592 # Deopt every n garbage collections collides with deopt every n times. | 586 # Deopt every n garbage collections collides with deopt every n times. |
| 593 'regress/regress-2653': [SKIP], | 587 'regress/regress-2653': [SKIP], |
| 594 }], # 'deopt_fuzzer == True' | 588 }], # 'deopt_fuzzer == True' |
| 595 ] | 589 ] |
| OLD | NEW |