From 0406deaa862dffb3527ae13198f1d0f858656c2e Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 23 Aug 2018 00:24:39 +0200 Subject: Use separate test folder to hold test files Also separate helloWorld example binding test from self aft tests Change-Id: I5b7c48b38cc6629c3edc97d280d7f9228451b337 Signed-off-by: Romain Forlot --- test/afb-test.sh | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 test/afb-test.sh (limited to 'test/afb-test.sh') diff --git a/test/afb-test.sh b/test/afb-test.sh new file mode 100755 index 0000000..d65795d --- /dev/null +++ b/test/afb-test.sh @@ -0,0 +1,40 @@ +#!/bin/sh -x + +trap cleanup SIGINT SIGTERM SIGABRT SIGHUP + +cleanup() { + rm -f $LOGPIPE + pkill $PROCNAME + exit 1 +} + +BINDER=$(command -v afb-daemon) +AFBTEST="$(pkg-config --variable libdir afb-test)/aft.so" +PROCNAME="aft-aftest" +PORT=1234 +TOKEN= +LOGPIPE="test.pipe" + +[ "$1" ] && BUILDDIR="$1" || exit 1 + +[ ! -p $LOGPIPE ] && mkfifo $LOGPIPE + +pkill $PROCNAME + +${BINDER} --name="${PROCNAME}" \ +--port="${PORT}" \ +--no-httpd \ +--tracereq=common \ +--token=${TOKEN} \ +--workdir="${BUILDDIR}/package-test" \ +--binding="$AFBTEST" \ +-vvv \ +--call="afTest/launch_all_tests:{}" \ +--call="afTest/exit:{}" > ${LOGPIPE} 2>&1 & + +while read -r line +do + [ "$(echo "${line}" | grep 'NOTICE: Browser URL=')" ] && break +done < ${LOGPIPE} + +rm -f ${LOGPIPE} -- cgit 1.2.3-korg