diff options
Diffstat (limited to 'testsuite/runtest')
-rwxr-xr-x | testsuite/runtest | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index 9a4fccbbf..51575d926 100755 --- a/testsuite/runtest +++ b/testsuite/runtest | |||
@@ -74,8 +74,10 @@ run_oldstyle_applet_tests() | |||
74 | *.mine) continue ;; # svn-produced junk | 74 | *.mine) continue ;; # svn-produced junk |
75 | *.r[0-9]*) continue ;; # svn-produced junk | 75 | *.r[0-9]*) continue ;; # svn-produced junk |
76 | esac | 76 | esac |
77 | run_applet_testcase "$applet" "$testcase" || status=1 | 77 | run_applet_testcase "$applet" "$testcase" || { |
78 | total_failed=$((total_failed + status)) | 78 | status=1 |
79 | total_failed=$((total_failed + 1)) | ||
80 | } | ||
79 | done | 81 | done |
80 | return $status | 82 | return $status |
81 | } | 83 | } |