summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/Makefile.in7
-rw-r--r--source3/stf/standardcheck.py4
2 files changed, 6 insertions, 5 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index fbe5b6afab..1babe1d3da 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -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
diff --git a/source3/stf/standardcheck.py b/source3/stf/standardcheck.py
index bec21b8ec5..e3292353e8 100644
--- a/source3/stf/standardcheck.py
+++ b/source3/stf/standardcheck.py
@@ -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)