1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

added make test and make valgrindtest targets

(This used to be ctdb commit b69fb43643993ee5aaabf8711bb874f95d468f35)
This commit is contained in:
Andrew Tridgell 2007-04-28 10:57:58 +02:00
parent 353a82f87c
commit 76381c4493
5 changed files with 15 additions and 1 deletions

View File

@ -105,12 +105,18 @@ distclean: clean
rm -f config.log config.status config.cache config.h rm -f config.log config.status config.cache config.h
rm -f Makefile rm -f Makefile
install: install: all
mkdir -p $(bindir) mkdir -p $(bindir)
mkdir -p $(includedir) mkdir -p $(includedir)
cp $(BINS) $(bindir) cp $(BINS) $(bindir)
cp $(srcdir)/include/ctdb.h $(includedir) cp $(srcdir)/include/ctdb.h $(includedir)
test:
tests/run_tests.sh
valgrindtest:
VALGRIND="valgrind -q --trace-children=yes" tests/run_tests.sh
realdistclean: distclean realdistclean: distclean
rm -f configure config.h.in rm -f configure config.h.in

8
ctdb/tests/run_tests.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
tests/fetch.sh || exit 1
tests/bench.sh || exit 1
tests/test.sh || exit 1
echo "All OK"
exit 0