Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Side by Side Diff: test/mjsunit/mjsunit.status

Issue 1232313007: MIPS: Fix missing falthru handling for some branch cases in TF. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Clean the code. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 'packed-elements': [PASS, SLOW], 486 'packed-elements': [PASS, SLOW],
487 'regress/regress-91008': [PASS, SLOW], 487 'regress/regress-91008': [PASS, SLOW],
488 'regress/regress-2790': [PASS, SLOW], 488 'regress/regress-2790': [PASS, SLOW],
489 'regress/regress-json-stringify-gc': [PASS, SLOW], 489 'regress/regress-json-stringify-gc': [PASS, SLOW],
490 'regress/regress-1122': [PASS, SLOW], 490 'regress/regress-1122': [PASS, SLOW],
491 }], # 'arch == arm or arch == android_arm' 491 }], # 'arch == arm or arch == android_arm'
492 492
493 ############################################################################## 493 ##############################################################################
494 ['arch == mipsel or arch == mips', { 494 ['arch == mipsel or arch == mips', {
495 495
496 # Bug in zlib due to 35eb3a0260d349cb4201fed66ff62a438962bd47
497 'asm/embenchen/zlib': [SKIP],
498
499 # Slow tests which times out in debug mode. 496 # Slow tests which times out in debug mode.
500 'try': [PASS, ['mode == debug', SKIP]], 497 'try': [PASS, ['mode == debug', SKIP]],
501 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], 498 'debug-scripts-request': [PASS, ['mode == debug', SKIP]],
502 'array-constructor': [PASS, ['mode == debug', SKIP]], 499 'array-constructor': [PASS, ['mode == debug', SKIP]],
503 500
504 # Times out often in release mode on MIPS. 501 # Times out often in release mode on MIPS.
505 'compiler/regress-stacktrace-methods': [PASS, ['mode == release', TIMEOUT]], 502 'compiler/regress-stacktrace-methods': [PASS, ['mode == release', TIMEOUT]],
506 'array-splice': [PASS, TIMEOUT], 503 'array-splice': [PASS, TIMEOUT],
507 504
508 # Long running test. 505 # Long running test.
(...skipping 19 matching lines...) Expand all
528 525
529 ############################################################################## 526 ##############################################################################
530 ['arch == mips', { 527 ['arch == mips', {
531 # Flaky with TF. 528 # Flaky with TF.
532 'mirror-script': [PASS, NO_VARIANTS], 529 'mirror-script': [PASS, NO_VARIANTS],
533 }], # 'arch == mips' 530 }], # 'arch == mips'
534 531
535 ############################################################################## 532 ##############################################################################
536 ['arch == mips64el', { 533 ['arch == mips64el', {
537 534
538 # Bug in zlib due to 35eb3a0260d349cb4201fed66ff62a438962bd47
539 'asm/embenchen/zlib': [SKIP],
540
541 # Slow tests which times out in debug mode. 535 # Slow tests which times out in debug mode.
542 'try': [PASS, ['mode == debug', SKIP]], 536 'try': [PASS, ['mode == debug', SKIP]],
543 'debug-scripts-request': [PASS, ['mode == debug', SKIP]], 537 'debug-scripts-request': [PASS, ['mode == debug', SKIP]],
544 'array-constructor': [PASS, ['mode == debug', SKIP]], 538 'array-constructor': [PASS, ['mode == debug', SKIP]],
545 539
546 # Times out often in release mode on MIPS. 540 # Times out often in release mode on MIPS.
547 'compiler/regress-stacktrace-methods': [PASS, PASS, ['mode == release', TIMEOU T]], 541 'compiler/regress-stacktrace-methods': [PASS, PASS, ['mode == release', TIMEOU T]],
548 'array-splice': [PASS, TIMEOUT], 542 'array-splice': [PASS, TIMEOUT],
549 543
550 # Long running test. 544 # Long running test.
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 'regress/regress-2653': [SKIP], 666 'regress/regress-2653': [SKIP],
673 }], # 'deopt_fuzzer == True' 667 }], # 'deopt_fuzzer == True'
674 668
675 ############################################################################## 669 ##############################################################################
676 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', { 670 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', {
677 671
678 # take too long with the simulator. 672 # take too long with the simulator.
679 'regress/regress-1132': [SKIP], 673 'regress/regress-1132': [SKIP],
680 }], # 'arch == ppc and simulator_run == True' 674 }], # 'arch == ppc and simulator_run == True'
681 ] 675 ]
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698