]> arthur.barton.de Git - bup.git/blobdiff - t/compare-trees
Update base_version to 0.34~ for 0.34 development
[bup.git] / t / compare-trees
diff --git a/t/compare-trees b/t/compare-trees
deleted file mode 100755 (executable)
index 30b6dae..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/usr/bin/env bash
-
-# Test that src and dest trees are as identical as bup is capable of
-# making them.  For now, use rsync -niaHAX ...
-
-set -e
-set -o pipefail
-
-usage() {
-cat <<EOF
-Usage: compare-trees [-h] [-c] [-x] SOURCE DEST
-OPTIONS:
-  -h
-    Display help
-  -c
-    Check file content (default)
-  -x
-    Don't check file content (rely on size/timestamps, etc.)
-EOF
-}
-
-verify_content=" --checksum"
-
-while getopts "hc" OPTION
-do
-    case "$OPTION" in
-        h) usage; exit 0;;
-        c) verify_content=" --checksum";;
-        x) verify_content="";;
-        ?) usage 1>&2; exit 1;;
-    esac
-done
-
-shift $(($OPTIND - 1))
-
-if ! test $# -eq 2
-then
-    usage 1>&2
-    exit 1
-fi
-
-src="$1"
-dest="$2"
-
-tmpfile="$(mktemp)"
-trap "rm -rf '${tmpfile}'" EXIT
-
-rsync_opts="-niaH$verify_content --delete"
-
-if rsync --version | grep -q xattrs; then
-    rsync_opts="$rsync_opts -AX"
-else
-    echo "Not comparing xattrs/acls (unsupported by available rsync)." 1>&2
-fi
-
-rsync $rsync_opts "$src" "$dest" > "${tmpfile}"
-
-if test $(wc -l < "${tmpfile}") != 0; then
-    echo "Differences between $src and $dest"
-    cat "${tmpfile}"
-    exit 1
-fi
-
-exit 0