aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_simple_send_string.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/test_transport_simple_send_string.sh')
-rwxr-xr-xsrc/transport/test_transport_simple_send_string.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/transport/test_transport_simple_send_string.sh b/src/transport/test_transport_simple_send_string.sh
new file mode 100755
index 000000000..018ea55e8
--- /dev/null
+++ b/src/transport/test_transport_simple_send_string.sh
@@ -0,0 +1,16 @@
1#!/bin/bash
2string=$(cat << EOF
3M:2
4N:1
5X:0
6T:libgnunet_test_transport_plugin_cmd_simple_send
7P:1:1|{connect:{P:1:2:tcp}}
8P:1:2|{connect:{P:1:1:tcp}}
9EOF
10)
11if [ "$(sysctl -n kernel.unprivileged_userns_clone)" == 1 ]; then
12 exec unshare -r -nmU bash -c "mount -t tmpfs --make-rshared tmpfs /run/netns; ./test_transport_start_with_config -s '$string'"
13else
14 echo -e "Error during test setup: The kernel parameter kernel.unprivileged_userns_clone has to be set to 1! One has to execute\n\n sysctl kernel.unprivileged_userns_clone=1\n"
15 exit 78
16fi