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 /nsswitch | |
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 'nsswitch')
-rwxr-xr-x | nsswitch/tests/test_wbinfo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nsswitch/tests/test_wbinfo.sh b/nsswitch/tests/test_wbinfo.sh index 84876e35d1..2e94c24640 100755 --- a/nsswitch/tests/test_wbinfo.sh +++ b/nsswitch/tests/test_wbinfo.sh @@ -14,8 +14,8 @@ TARGET=$4 shift 4 failed=0 -samba4bindir=`dirname $0`/../../source4/bin -wbinfo=$samba4bindir/wbinfo +samba4bindir="$BUILDDIR/bin" +wbinfo="$samba4bindir/wbinfo$EXEEXT" . `dirname $0`/../../testprogs/blackbox/subunit.sh |