diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-09-25 14:54:34 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-09-25 14:54:34 +0200 |
commit | 513cb7f80f4d9eb85d15b58e7396709d5d1be39a (patch) | |
tree | 73cfde99fa4fcd58a0728241eeb3bb0a9677390a /test/afb-test.sh | |
parent | 390745b93c5f4af9b148c94433f44ec462a39770 (diff) |
Use the unified script to launch tests
This use the dedicated script to launch tests on native
development environment and get rid of the dedicated script
afb-test.sh.
Change-Id: Iaefa95bfd9c842da5ef87bd1adba87d5241a3d8c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'test/afb-test.sh')
-rwxr-xr-x | test/afb-test.sh | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/test/afb-test.sh b/test/afb-test.sh deleted file mode 100755 index 317c615b..00000000 --- a/test/afb-test.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -x - -BINDER=$(command -v afb-daemon) -CLIENT=$(command -v afb-client-demo) -AFBTEST="$(pkg-config --variable libdir afb-test)/aft.so" -PROCNAME="aft-low-can" -PORT=1234 -TOKEN= -LOGPIPE="test.log" -[ "$1" ] && BUILDDIR="$1" || exit 1 - -[ ! -p $LOGPIPE ] && mkfifo $LOGPIPE - -pkill $PROCNAME - -${BINDER} --name="${PROCNAME}" \ ---port="${PORT}" \ ---roothttp=. \ ---tracereq=common \ ---token=${TOKEN} \ ---workdir="${BUILDDIR}/package-test" \ ---binding="../package/lib/afb-low-can.so" \ ---binding="$AFBTEST" \ --vvv \ ---call="aft-low-can/launch_all_tests:{}" \ --vvv > ${LOGPIPE} 2>&1 & - -while read -r line -do - [ "$(echo "${line}" | grep 'NOTICE: Browser URL=')" ] && break -done < ${LOGPIPE} - -${CLIENT} ws://localhost:${PORT}/api?token=${TOKEN} aft-low-can exit - -rm -f ${LOGPIPE} |