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 | a1bec01eeb660e8ff00d77da185f81815be94c30 (patch) | |
tree | c139a8892139dea213543114aaa08f9f7ec2a7c4 /source3/script/tests | |
parent | 745354eab801ab08d161b7c5ee0142c82c1061b2 (diff) | |
download | samba-a1bec01eeb660e8ff00d77da185f81815be94c30.tar.gz samba-a1bec01eeb660e8ff00d77da185f81815be94c30.tar.bz2 samba-a1bec01eeb660e8ff00d77da185f81815be94c30.zip |
s3:tests: include subunit.sh instead of test_functions.sh in test_local_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_local_s3.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/tests/test_local_s3.sh b/source3/script/tests/test_local_s3.sh index 0c94871ba5..de867c959e 100755 --- a/source3/script/tests/test_local_s3.sh +++ b/source3/script/tests/test_local_s3.sh @@ -10,8 +10,8 @@ exit 1; fi test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && { -incdir=`dirname $0` -. $incdir/test_functions.sh +incdir=`dirname $0`/../../../testprogs/blackbox +. $incdir/subunit.sh } failed=0 |