diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-02-03 16:23:13 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-02-03 16:31:04 +0100 |
commit | 8b408f781970b3f2b310389f9ae73ad0c5e42881 (patch) | |
tree | a983f8474e5863e8babc93f03524e0166f41b4ea /source4/librpc/tests | |
parent | 7c72853b50b14653fe3c62fde3bf653b45c755f8 (diff) | |
download | samba-8b408f781970b3f2b310389f9ae73ad0c5e42881.tar.gz samba-8b408f781970b3f2b310389f9ae73ad0c5e42881.tar.bz2 samba-8b408f781970b3f2b310389f9ae73ad0c5e42881.zip |
s4:selftest: avoid hardcoded pathes in blackbox tests
metze
Diffstat (limited to 'source4/librpc/tests')
-rwxr-xr-x | source4/librpc/tests/test_ndrdump.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/tests/test_ndrdump.sh b/source4/librpc/tests/test_ndrdump.sh index 511856061c..dccf86df88 100755 --- a/source4/librpc/tests/test_ndrdump.sh +++ b/source4/librpc/tests/test_ndrdump.sh @@ -8,8 +8,8 @@ failed=0 -samba4bindir=`dirname $0`/../../bin -ndrdump=$samba4bindir/ndrdump +samba4bindir="$BUILDDIR/bin" +ndrdump="$samba4bindir/ndrdump$EXEEXT" files=`dirname $0`/ testit "ndrdump with in" $VALGRIND $ndrdump samr samr_CreateUser in $files/samr-CreateUser-in.dat $@ || failed=`expr $failed + 1` |