summaryrefslogtreecommitdiff
path: root/tests/13_socket_add.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/13_socket_add.sh')
-rwxr-xr-xtests/13_socket_add.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/13_socket_add.sh b/tests/13_socket_add.sh
new file mode 100755
index 0000000..daa4f8f
--- /dev/null
+++ b/tests/13_socket_add.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+TEST_ID="13"
+TEST_NAME="Socket device addition"
+
+CREATE=`pwd`/$1
+DEPLOY=`pwd`/$2
+TEST_TOOLS=$3
+
+. ./test_lib.sh
+
+############# Test specific code ############
+# sockets can't be added sensibly, test that it hasn't been
+SOCKBIND=`mktemp`
+setup () {
+ gcc sockbind.c -o $SOCKBIND 2>/dev/null >/dev/null
+ $SOCKBIND "$TARGET/toadd" &
+ SOCKBINDPID=$!
+ until test -S "$TARGET/toadd"; do :; done
+ kill $SOCKBINDPID && wait $SOCKBINDPID 2>/dev/null
+ rm -f $SOCKBIND
+}
+
+#tbdiff-create should fail when it would have to add a socket
+create_test_return () {
+ test "$1" != "0"
+}
+
+check_results () {
+ false #test should never reach this
+}
+
+#############################################
+main $@