summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/test-wgt/launcher.sh.in7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test-wgt/launcher.sh.in b/src/test-wgt/launcher.sh.in
index 1dac914..a0ec0f7 100644
--- a/src/test-wgt/launcher.sh.in
+++ b/src/test-wgt/launcher.sh.in
@@ -27,11 +27,6 @@ TOKEN=$2
CFGFILE=$(find ${AFM_APP_INSTALL_DIR} -name "*json" -print | head -n1)
API=$(grep '\"api\"' ${CFGFILE} | cut -d'"' -f4)
-AFBCLIENTIN=$(mktemp -u)
-AFBCLIENTOUT=$(mktemp -u)
-mkfifo $AFBCLIENTIN
-mkfifo $AFBCLIENTOUT
-
declare -a testVerb
if [[ $(jq -r '.testVerb|type' $CFGFILE) == "array" ]]
@@ -65,5 +60,3 @@ for (( idx=0; idx<testVerbLength; idx++ )) do
echo "Launching ${testVerb[$idx]}"
afb-client-demo -s ws://localhost:${PORT}/api?token=${TOKEN} "$API" "${testVerb[$idx]}" "${VERBARGS}"
done
-
-afb-client-demo ws://localhost:${PORT}/api?token=${TOKEN} "$API" "exit"