weston/tests/weston-tests-env
Kristian Høgsberg e565b40569 tests: Pass --backend so the test suite runs with the right modules
Without this we try to load the installed backends, which is nasty for
regular runs, and just doesn't work for make distcheck, which sets
prefix to $PWD/_inst.  This makes sure we load the right backend
and make distcheck pass.  Other modules (xwayland, shells etc) just don't
get loaded for distcheck and for make check we still try to load the
installed modules.
2012-12-14 16:34:00 -05:00

35 lines
742 B
Bash
Executable File

#!/bin/bash
WESTON=$abs_builddir/../src/weston
LOGDIR=$abs_builddir/logs
mkdir -p "$LOGDIR"
SERVERLOG="$LOGDIR/$1-serverlog.txt"
OUTLOG="$LOGDIR/$1-log.txt"
rm -f "$SERVERLOG"
if test x$WAYLAND_DISPLAY != x; then
BACKEND=$abs_builddir/../src/.libs/wayland-backend.so
elif test x$DISPLAY != x; then
BACKEND=$abs_builddir/../src/.libs/x11-backend.so
else
BACKEND=$abs_builddir/../src/.libs/wayland-backend.so
fi
case $1 in
*.la|*.so)
$WESTON --backend=$BACKEND \
--modules=$abs_builddir/.libs/${1/.la/.so} \
--log="$SERVERLOG" \
&> "$OUTLOG"
;;
*)
WESTON_TEST_CLIENT_PATH=$abs_builddir/$1 $WESTON \
--backend=$BACKEND \
--log="$SERVERLOG" \
--modules=$abs_builddir/.libs/weston-test.so \
&> "$OUTLOG"
esac