diff options
author | Michael Adam <obnox@samba.org> | 2011-02-19 01:14:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-02-19 12:23:24 +0100 |
commit | d03996afb50a22b24119cc4a6380c6923bcda997 (patch) | |
tree | 16edaf87215df393ab7c8aaf3d3223f2e931bdea /source3/script/tests | |
parent | 6af6241040d376315f47716b4df7ca843b918d2d (diff) | |
download | samba-d03996afb50a22b24119cc4a6380c6923bcda997.tar.gz samba-d03996afb50a22b24119cc4a6380c6923bcda997.tar.bz2 samba-d03996afb50a22b24119cc4a6380c6923bcda997.zip |
s3:tests: include subunit.sh instead of test_functions.sh in test_ntlm_auth_s3.sh
It would actually not be necessary at all to include a script providing
testit() and so on, since this script snippet is currently only sourced
in tests.sh to plan the included test.
Diffstat (limited to 'source3/script/tests')
-rwxr-xr-x | source3/script/tests/test_ntlm_auth_s3.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/tests/test_ntlm_auth_s3.sh b/source3/script/tests/test_ntlm_auth_s3.sh index c7ebc03c80..17aabef98e 100755 --- a/source3/script/tests/test_ntlm_auth_s3.sh +++ b/source3/script/tests/test_ntlm_auth_s3.sh @@ -1,8 +1,8 @@ #!/bin/sh test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && { -incdir=`dirname $0` -. $incdir/test_functions.sh +incdir=`dirname $0`/../../../testprogs/blackbox +. $incdir/subunit.sh } failed=0 |