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/torture/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/torture/tests')
-rwxr-xr-x | source4/torture/tests/test_gentest.sh | 4 | ||||
-rwxr-xr-x | source4/torture/tests/test_locktest.sh | 4 | ||||
-rwxr-xr-x | source4/torture/tests/test_masktest.sh | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/source4/torture/tests/test_gentest.sh b/source4/torture/tests/test_gentest.sh index 2f4d00dc77..c7f66c8445 100755 --- a/source4/torture/tests/test_gentest.sh +++ b/source4/torture/tests/test_gentest.sh @@ -17,8 +17,8 @@ DOMAIN=$4 shift 4 failed=0 -samba4bindir=`dirname $0`/../../bin -gentest=$samba4bindir/gentest +samba4bindir="$BUILDDIR/bin" +gentest="$samba4bindir/gentest$EXEEXT" . `dirname $0`/../../../testprogs/blackbox/subunit.sh diff --git a/source4/torture/tests/test_locktest.sh b/source4/torture/tests/test_locktest.sh index 1fe39b4d1d..a8f11ee0ba 100755 --- a/source4/torture/tests/test_locktest.sh +++ b/source4/torture/tests/test_locktest.sh @@ -18,8 +18,8 @@ PREFIX=$5 shift 5 failed=0 -samba4bindir=`dirname $0`/../../bin -locktest=$samba4bindir/locktest +samba4bindir="$BUILDDIR/bin" +locktest="$samba4bindir/locktest$EXEEXT" . `dirname $0`/../../../testprogs/blackbox/subunit.sh diff --git a/source4/torture/tests/test_masktest.sh b/source4/torture/tests/test_masktest.sh index 59165e47df..e4fa65ccfb 100755 --- a/source4/torture/tests/test_masktest.sh +++ b/source4/torture/tests/test_masktest.sh @@ -18,8 +18,8 @@ PREFIX=$5 shift 5 failed=0 -samba4bindir=`dirname $0`/../../bin -masktest=$samba4bindir/masktest +samba4bindir="$BUILDDIR/bin" +masktest="$samba4bindir/masktest$EXEEXT" . `dirname $0`/../../../testprogs/blackbox/subunit.sh |