summaryrefslogtreecommitdiff
path: root/tests/03_fifo_add_remove.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/03_fifo_add_remove.sh')
-rwxr-xr-xtests/03_fifo_add_remove.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/03_fifo_add_remove.sh b/tests/03_fifo_add_remove.sh
new file mode 100755
index 0000000..58ffa67
--- /dev/null
+++ b/tests/03_fifo_add_remove.sh
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+TEST_ID="03"
+TEST_NAME="Named pipe (FIFO) add remove test"
+
+CREATE=`pwd`/$1
+DEPLOY=`pwd`/$2
+TEST_TOOLS=$3
+
+. ./test_lib.sh
+
+############# Test specific code ############
+
+function setup {
+ mkfifo $ORIGIN/remove && \
+ mkfifo $TARGET/add && \
+ chmod 707 $TARGET/add && \
+ chown -h :cdrom $TARGET/add
+}
+
+function check_results {
+ test -p $ORIGIN/add && \
+ test ! -p $ORIGIN/remove && \
+ check_same_mtime $ORIGIN/add $TARGET/add && \
+ check_same_uidgid $ORIGIN/add $TARGET/add
+}
+
+#############################################
+main $@