From 7a4496f606ab3d6594489eeee89ed2140b8c7655 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 30 Jun 2005 17:05:02 +0000 Subject: r8020: - add --with-selftest-prefix option that specify the prefix used in make test - also we use ./prefix test as default and not `pwd`/prefix-test to workaround the path length limit for unix sockets ... char sun_path[108]; ... metze (This used to be commit d04057b932266325b1267597b2bc202db392a88a) --- source4/script/tests/selftest.sh | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'source4/script/tests') diff --git a/source4/script/tests/selftest.sh b/source4/script/tests/selftest.sh index bf1b80c099..d99857f2d0 100755 --- a/source4/script/tests/selftest.sh +++ b/source4/script/tests/selftest.sh @@ -17,13 +17,20 @@ fi PREFIX=$1 export PREFIX -TMPDIR=$PREFIX/tmp -LIBDIR=$PREFIX/lib -PIDDIR=$PREFIX/pid +mkdir -p $PREFIX || exit $? +OLD_PWD=`pwd` +cd $PREFIX || exit $? +PREFIX_ABS=`pwd` +export PREFIX_ABS +cd $OLD_PWD + +TMPDIR=$PREFIX_ABS/tmp +LIBDIR=$PREFIX_ABS/lib +PIDDIR=$PREFIX_ABS/pid CONFFILE=$LIBDIR/smb.conf -PRIVATEDIR=$PREFIX/private -NCALRPCDIR=$PREFIX/ncalrpc -LOCKDIR=$PREFIX/lockdir +PRIVATEDIR=$PREFIX_ABS/private +NCALRPCDIR=$PREFIX_ABS/ncalrpc +LOCKDIR=$PREFIX_ABS/lockdir TLSDIR=$PRIVATEDIR/tls CONFIGURATION="--configfile=$CONFFILE" export CONFIGURATION -- cgit