diff options
author | Michael Adam <obnox@samba.org> | 2009-09-27 11:16:39 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-27 11:18:52 +0200 |
commit | 039537cbe742737cb9bb5b4ac850d1b0f032a034 (patch) | |
tree | 8e23ee1700e9be2c7f7dce1442acba21096bbecd | |
parent | 2fd7417f56871f1e195bdd7c1a564e03e9009f42 (diff) | |
download | tinyproxy-039537cbe742737cb9bb5b4ac850d1b0f032a034.tar.gz tinyproxy-039537cbe742737cb9bb5b4ac850d1b0f032a034.zip |
make: add targets "test" and "valgrind-test"
These simply run the corresponding test scripts.
Needs to be extended.
Michael
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index eb70745..f3747b8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,3 +14,9 @@ EXTRA_DIST = \ autogen.sh \ tinyproxy-indent.sh \ TODO + +test: all + ./tests/scripts/run_tests.sh + +valgrind-test: all + ./tests/scripts/run_tests_valgrind.sh |