diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-11-17 15:30:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-11-17 15:30:01 +0000 |
commit | ec3054e1f29cc2a40e2ce897c33e99c8a5c49595 (patch) | |
tree | e054aa688c6662a1ea7b56a0ef0b251cb30bb860 | |
parent | 7c6414ebbd7b6dc2e049b5a75a9429eae8678c7f (diff) |
make test in root now runs make quiet-test in the test dir
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 71232c025..9f9a66936 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,4 +9,4 @@ EXTRA_DIST = curl.spec curl-ssl.spec SUBDIRS = docs lib src include tests test: - @(cd tests; make test) + @(cd tests; make quiet-test) diff --git a/tests/Makefile.am b/tests/Makefile.am index ac9e09c61..cba94c1b0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,6 +5,10 @@ install: test: ./runtests.pl +quiet-test: + ./runtests.pl -s -c + clean: rm -rf log find . -name "*~" | xargs rm -f + |