diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-15 12:41:22 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-16 11:43:04 +0200 |
commit | 4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2 (patch) | |
tree | 5d3d75728d97688bb99f2200613ff46c66bfc6b5 /testprogs | |
parent | cfb44f63a4eadfd34c0cf7b003b677e43284376f (diff) | |
download | samba-4fd6ebf544f90a6d18e6828eb3edc7b75f3b90a2.tar.gz |
selftest: Remove duplication between BUILDIR and BINDIR
Just have BINDIR, and have it default to ./bin
Andrew Bartlett
Diffstat (limited to 'testprogs')
-rwxr-xr-x | testprogs/blackbox/test_chgdcpass.sh | 2 | ||||
-rwxr-xr-x | testprogs/blackbox/test_export_keytab.sh | 2 | ||||
-rwxr-xr-x | testprogs/blackbox/test_kinit.sh | 2 | ||||
-rwxr-xr-x | testprogs/blackbox/test_ktpass.sh | 6 | ||||
-rwxr-xr-x | testprogs/blackbox/test_ldb.sh | 2 | ||||
-rwxr-xr-x | testprogs/blackbox/test_passwords.sh | 2 | ||||
-rwxr-xr-x | testprogs/blackbox/test_pkinit.sh | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/testprogs/blackbox/test_chgdcpass.sh b/testprogs/blackbox/test_chgdcpass.sh index c609efc312b..467eaf7bd9e 100755 --- a/testprogs/blackbox/test_chgdcpass.sh +++ b/testprogs/blackbox/test_chgdcpass.sh @@ -20,7 +20,7 @@ PROVDIR=$7 shift 7 failed=0 -samba4bindir="$BUILDDIR/bin" +samba4bindir="$BINDIR" samba4srcdir="$SRCDIR/source4" smbclient="$samba4bindir/smbclient$EXEEXT" samba4kinit="$samba4bindir/samba4kinit$EXEEXT" diff --git a/testprogs/blackbox/test_export_keytab.sh b/testprogs/blackbox/test_export_keytab.sh index 3982563a7d8..207ed31c1c2 100755 --- a/testprogs/blackbox/test_export_keytab.sh +++ b/testprogs/blackbox/test_export_keytab.sh @@ -18,7 +18,7 @@ PREFIX=$5 shift 5 failed=0 -samba4bindir="$BUILDDIR/bin" +samba4bindir="$BINDIR" smbclient="$samba4bindir/smbclient$EXEEXT" samba4kinit="$samba4bindir/samba4kinit$EXEEXT" samba_tool="$samba4bindir/samba-tool$EXEEXT" diff --git a/testprogs/blackbox/test_kinit.sh b/testprogs/blackbox/test_kinit.sh index 635e228e069..a00f67e8c61 100755 --- a/testprogs/blackbox/test_kinit.sh +++ b/testprogs/blackbox/test_kinit.sh @@ -20,7 +20,7 @@ ENCTYPE=$7 shift 7 failed=0 -samba4bindir="$BUILDDIR/bin" +samba4bindir="$BINDIR" samba4srcdir="$SRCDIR/source4" smbclient="$samba4bindir/smbclient$EXEEXT" samba4kinit="$samba4bindir/samba4kinit$EXEEXT" diff --git a/testprogs/blackbox/test_ktpass.sh b/testprogs/blackbox/test_ktpass.sh index c44439544b4..33adba42713 100755 --- a/testprogs/blackbox/test_ktpass.sh +++ b/testprogs/blackbox/test_ktpass.sh @@ -13,8 +13,8 @@ shift 1 . `dirname $0`/subunit.sh -samba_tool="$BUILDDIR/bin/samba-tool" -samba4bindir="$BUILDDIR/bin" +samba_tool="$BINDIR/samba-tool" +samba4bindir="$BINDIR" samba4srcdir="$SRCDIR/source4" samba4kinit="$samba4bindir/samba4kinit$EXEEXT" CONFIG="--configfile=$PREFIX/dc/etc/smb.conf" @@ -27,7 +27,7 @@ KRB5CCNAME="$PREFIX/tmpccache" export KRB5CCNAME echo "testp@ssw0Rd" >$PREFIX/tmppassfile testit "kinit with passwd" $samba4kinit -e arcfour-hmac-md5 --password-file=$PREFIX/tmppassfile $TESTUSER@SAMBA.EXAMPLE.COM || failed=`expr $failed + 1` -testit "ktpass" $samba4srcdir/scripting/bin/ktpass.sh --host LOCALDC --out $PREFIX/testuser.kt --princ $TESTUSER --pass "testp@ssw0Rd" --path-to-ldbsearch=$BUILDDIR/bin|| failed=`expr $failed + 1` +testit "ktpass" $samba4srcdir/scripting/bin/ktpass.sh --host LOCALDC --out $PREFIX/testuser.kt --princ $TESTUSER --pass "testp@ssw0Rd" --path-to-ldbsearch=$BINDIR/bin|| failed=`expr $failed + 1` rm -f $KRB5CCNAME diff --git a/testprogs/blackbox/test_ldb.sh b/testprogs/blackbox/test_ldb.sh index 78fd93cf8c3..644e344823e 100755 --- a/testprogs/blackbox/test_ldb.sh +++ b/testprogs/blackbox/test_ldb.sh @@ -32,7 +32,7 @@ check() { return $status } -export PATH="$BUILDDIR/bin:$PATH" +export PATH="$BINDIR:$PATH" ldbsearch="$VALGRIND ldbsearch$EXEEXT" diff --git a/testprogs/blackbox/test_passwords.sh b/testprogs/blackbox/test_passwords.sh index eb7cbf087b4..d5b913a35f5 100755 --- a/testprogs/blackbox/test_passwords.sh +++ b/testprogs/blackbox/test_passwords.sh @@ -19,7 +19,7 @@ PREFIX=$6 shift 6 failed=0 -samba4bindir="$BUILDDIR/bin" +samba4bindir="$BINDIR" smbclient="$samba4bindir/smbclient$EXEEXT" samba4kinit="$samba4bindir/samba4kinit$EXEEXT" samba_tool="$samba4bindir/samba-tool$EXEEXT" diff --git a/testprogs/blackbox/test_pkinit.sh b/testprogs/blackbox/test_pkinit.sh index 41798eaf6e4..8d5c7994039 100755 --- a/testprogs/blackbox/test_pkinit.sh +++ b/testprogs/blackbox/test_pkinit.sh @@ -20,7 +20,7 @@ ENCTYPE=$7 shift 7 failed=0 -samba4bindir="$BUILDDIR/bin" +samba4bindir="$BINDIR" samba4srcdir="$SRCDIR/source4" smbclient="$samba4bindir/smbclient$EXEEXT" samba4kinit="$samba4bindir/samba4kinit$EXEEXT" |