Changed most instances of "remote_version" to "protocol_version", and
[rsync/rsync.git] / testsuite / duplicates.test
index 9e47c70..a81fe68 100644 (file)
@@ -21,8 +21,6 @@
 
 . $srcdir/testsuite/rsync.fns
 
-test_skipped "Known minor bug in this code"
-
 set -x
 
 # Build some hardlinks
@@ -44,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 ]
+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
-