diff options
author | Wayne Davison <wayned@samba.org> | 2003-04-22 16:45:24 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-04-22 16:45:24 +0000 |
commit | 0406a3a7a417066afec39466ca922e94d3cccb81 (patch) | |
tree | 0bc154b745be7e731672ef0cbf1e048d5203556d /testsuite | |
parent | bc3b5b255819230bda8ca80961a7bbaa38a43099 (diff) | |
download | rsync-0406a3a7a417066afec39466ca922e94d3cccb81.tar.gz rsync-0406a3a7a417066afec39466ca922e94d3cccb81.tar.bz2 rsync-0406a3a7a417066afec39466ca922e94d3cccb81.zip |
Changed test_xfail to test_fail.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/duplicates.test | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testsuite/duplicates.test b/testsuite/duplicates.test index 54c3a06e..a81fe687 100644 --- a/testsuite/duplicates.test +++ b/testsuite/duplicates.test @@ -42,13 +42,12 @@ checkit "$RSYNC -avv \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$ # Make sure each file was only copied once... if [ `grep -c '^name1$' "$outfile"` != 1 ] then - test_xfail "name1 was not copied exactly once" + test_fail "name1 was not copied exactly once" fi if [ `grep -c '^name2 -> ' "$outfile"` != 1 ] then - test_xfail "name2 was not copied exactly once" + test_fail "name2 was not copied exactly once" fi exit 0 # last [] may have failed but if we get here then we've won - |