summaryrefslogtreecommitdiff
path: root/tests/regular_file_add_remove.sh.disabled
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regular_file_add_remove.sh.disabled')
-rwxr-xr-xtests/regular_file_add_remove.sh.disabled32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/regular_file_add_remove.sh.disabled b/tests/regular_file_add_remove.sh.disabled
deleted file mode 100755
index 66b5bc8..0000000
--- a/tests/regular_file_add_remove.sh.disabled
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/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 $@