diff options
author | Martin Pool <mbp@samba.org> | 2002-01-11 08:01:05 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-11 08:01:05 +0000 |
commit | be2f866b4cacadbed2d18bd6b3e23ae0afc04d4e (patch) | |
tree | 676dcfb8128225dd9d2ab623805ade09011238d0 /runtests.sh | |
parent | f08aacf7d66fac3004dbf0871006b9880968cec1 (diff) | |
download | rsync-be2f866b4cacadbed2d18bd6b3e23ae0afc04d4e.tar.gz rsync-be2f866b4cacadbed2d18bd6b3e23ae0afc04d4e.tar.bz2 rsync-be2f866b4cacadbed2d18bd6b3e23ae0afc04d4e.zip |
Add concept of expected-failure.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtests.sh b/runtests.sh index 62121210..9a9b07d6 100755 --- a/runtests.sh +++ b/runtests.sh @@ -209,6 +209,13 @@ do skipped=`expr $skipped + 1` discard_scratch ;; + 78) + # It failed, but we expected that. don't dump out error logs, + # because most users won't want to see them. But do leave + # the working directory around. + echo "XFAIL $testbase" + failed=`expr $failed + 1` + ;; *) echo "FAIL $testbase" echo "----- $testbase failed: log follows" |