make a separate verify target

svn:r124
This commit is contained in:
Niels Provos 2004-12-01 19:59:00 +00:00
parent b011b734eb
commit f5a62ed30e
4 changed files with 20 additions and 2 deletions

View File

@ -29,4 +29,7 @@ INCLUDES = -Icompat
man_MANS = event.3
verify: libevent.a
cd $(srcdir)/test && make verify
DISTCLEANFILES = *~

13
README Normal file
View File

@ -0,0 +1,13 @@
To build libevent, type
$ ./configure && make
Install as root via
# make install
You can run the regression tests by
$ make verify
Before, reporting any problems, please run the regression tests.

View File

@ -10,4 +10,6 @@ event_test_sources = event-test.c
time_test_sources = time-test.c
signal_test_sources = signal-test.c
verify:
DISTCLEANFILES = *~

View File

@ -15,9 +15,9 @@ bench_sources = bench.c
DISTCLEANFILES = *~
all: test
test: test-init test-eof test-weof test-time regress
verify: test
@./test.sh
bench test-init test-eof test-weof test-time regress: ../libevent.a