aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/rsyslog/librelp/run-ptest
blob: a649a5716f45238f5c60132caf3ecfc38d752519 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
#
set -e
set -o pipefail

SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
cd ${SCRIPTPATH}
useradd tester  || echo "user already exists"
su tester -c "make -C tests -k check-TESTS"
userdel tester