1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

Merge stf updates from HEAD.

(This used to be commit 20bde94eb881009128794283a1d7537bbc62e268)
This commit is contained in:
Tim Potter 2003-04-28 05:20:01 +00:00
parent 4ea3cd2629
commit 322d385b6e
2 changed files with 6 additions and 5 deletions

View File

@ -1354,6 +1354,7 @@ check: check-programs
PATH="`pwd`/bin:$$PATH" \
python stf/standardcheck.py
# These are called by the test suite
check-programs: bin/t_strcmp bin/t_push_ucs2 bin/smbcontrol
# These are called by the test suite and need to be built before
# running it. For the time being we don't build all of BIN_PROGS,
# because they're not all needed.
check-programs: bin/t_strcmp bin/t_push_ucs2 bin/smbcontrol bin/t_snprintf

View File

@ -22,13 +22,13 @@
"""These tests are run by Samba's "make check"."""
import strings, comfychair
import smbcontrol
import smbcontrol, sambalib
# There should not be any actual tests in here: this file just serves
# to define the ones run by default. They're imported from other
# modules.
tests = strings.tests + smbcontrol.tests
tests = strings.tests + smbcontrol.tests + sambalib.tests
if __name__ == '__main__':
comfychair.main(tests)