summaryrefslogtreecommitdiff
path: root/tests/regular_file_add_remove.sh.disabled
diff options
context:
space:
mode:
authorBen Brown <ben.brown@codethink.co.uk>2013-11-06 14:27:08 +0000
committerBen Brown <ben.brown@codethink.co.uk>2013-11-06 14:27:08 +0000
commit057bee132cf0bde4db35a6c6e7c4724e9331ce03 (patch)
tree19d33be6f8288ed21888fd69fb208ead12f0a871 /tests/regular_file_add_remove.sh.disabled
parent7804883ce512a7cacb911cdea3a4896ecb79b22b (diff)
parentdaddec13b84ca2729a1d9e09d9df260663557ba8 (diff)
downloadtbdiff-057bee132cf0bde4db35a6c6e7c4724e9331ce03.tar.gz
Merge branch 'benbrown/S9451/convert-directory-tests'
Diffstat (limited to 'tests/regular_file_add_remove.sh.disabled')
-rwxr-xr-xtests/regular_file_add_remove.sh.disabled32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/regular_file_add_remove.sh.disabled b/tests/regular_file_add_remove.sh.disabled
new file mode 100755
index 0000000..66b5bc8
--- /dev/null
+++ b/tests/regular_file_add_remove.sh.disabled
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+TEST_ID="01"
+TEST_NAME="Regular file add remove"
+
+CREATE=`pwd`/$1
+DEPLOY=`pwd`/$2
+TEST_TOOLS=$3
+
+. ./test_lib.sh
+
+############# Test specific code ############
+
+setup_origin () {
+ touch $ORIGIN/remove
+}
+
+setup_target () {
+ echo 1 > $TARGET/add &&
+ chown -h :cdrom $TARGET/add
+}
+
+check_results () {
+ test -f $ORIGIN/add && \
+ test ! -f $ORIGIN/remove && \
+ check_content $ORIGIN/add "1" && \
+ check_same_mtime $ORIGIN/add $TARGET/add && \
+ check_same_uidgid $ORIGIN/add $TARGET/add
+}
+
+#############################################
+main $@