Skip to content
Snippets Groups Projects
Commit a6064696 authored by Anders Blomdell's avatar Anders Blomdell
Browse files

Sort result of find

parent a79f4bfa
No related branches found
No related tags found
No related merge requests found
...@@ -49,22 +49,22 @@ config > "${TESTDIR}/2/TOTALBACKUP.config" ...@@ -49,22 +49,22 @@ config > "${TESTDIR}/2/TOTALBACKUP.config"
../sha512backup --xattr --primary <(config) 2> /dev/null ../sha512backup --xattr --primary <(config) 2> /dev/null
# Check that source and dest are equal # Check that source and dest are equal
diff -u <(cd ../test ; find) <(cd ${TESTDIR}/1/test ; find .) diff -u <(cd ../test ; find | sort) <(cd ${TESTDIR}/1/test ; find | sort)
diff -u <(cd ../.git/refs ; find) <(cd ${TESTDIR}/2/.git/refs ; find .) diff -u <(cd ../.git/refs ; find | sort) <(cd ${TESTDIR}/2/.git/refs ; find | sort)
# Delete temporary file # Delete temporary file
rm ${TESTFILE} rm ${TESTFILE}
# Make sure source and dest differs # Make sure source and dest differs
! diff -u <(cd ../test ; find) <(cd ${TESTDIR}/1/test ; find .) ! diff -u <(cd ../test ; find | sort) <(cd ${TESTDIR}/1/test ; find | sort)
diff -u <(cd ../.git/refs ; find) <(cd ${TESTDIR}/2/.git/refs ; find .) diff -u <(cd ../.git/refs ; find | sort) <(cd ${TESTDIR}/2/.git/refs ; find | sort)
# Bring dest to sync # Bring dest to sync
../sha512backup --xattr --primary <(config) 2> /dev/null ../sha512backup --xattr --primary <(config) 2> /dev/null
# Check that source and dest are equal # Check that source and dest are equal
diff -u <(cd ../test ; find) <(cd ${TESTDIR}/1/test ; find .) diff -u <(cd ../test ; find | sort) <(cd ${TESTDIR}/1/test ; find | sort)
diff -u <(cd ../.git/refs ; find) <(cd ${TESTDIR}/2/.git/refs ; find .) diff -u <(cd ../.git/refs ; find | sort) <(cd ${TESTDIR}/2/.git/refs ; find | sort)
# Check that deleted file exists in TRASH # Check that deleted file exists in TRASH
[ -f ${TESTDIR}/1/TRASH/*/${TESTFILE} ] [ -f ${TESTDIR}/1/TRASH/*/${TESTFILE} ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment