You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
456 B
24 lines
456 B
#!/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"
|
|
|
|
case $1 in
|
|
*.la|*.so)
|
|
$WESTON --modules=$abs_builddir/.libs/${1/.la/.so} \
|
|
--log="$SERVERLOG" \
|
|
&> "$OUTLOG"
|
|
;;
|
|
*)
|
|
WESTON_TEST_CLIENT_PATH=$abs_builddir/$1 $WESTON \
|
|
--log="$SERVERLOG" \
|
|
--modules=$abs_builddir/.libs/weston-test.so \
|
|
&> "$OUTLOG"
|
|
esac
|
|
|