summaryrefslogtreecommitdiff
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2010-05-05 08:25:17 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2010-05-05 08:25:17 +0000
commit5ebe8ae98780d6ab850376fbf2a330703ead613c (patch)
tree58642cf5ce847359ea1f2f5b3eef5cddaf552558 /test/Makefile.in
parent28d49f994471da832838c156d674f8ea1531f82b (diff)
downloadneon-5ebe8ae98780d6ab850376fbf2a330703ead613c.tar.gz
* src/ne_request.c (body_fd_send): Handle read() errors; thanks to Lou
Montulli. * test/request.c (serve_mirror, send_length): Add test case. * test/Makefile.in (foobar.txt): Create test file. git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1801 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 8617a3e..d94a02d 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -18,7 +18,7 @@ LIBS = $(LIBTEST)
CC = @CC@
OPENSSL = @OPENSSL@
-HELPERS = @HELPERS@
+HELPERS = @HELPERS@ foobar.txt
BASIC_TESTS = uri-tests util-tests string-tests socket \
session request auth basic stubs redirect
ZLIB_TESTS = compress
@@ -125,6 +125,9 @@ empty.gz:
random.txt: $(NEWS)
cat $(NEWS) > $@
+foobar.txt:
+ echo foobar > $@
+
# Dummy target to create the CA keys etc. makekeys stderr is redirected
# since it changes for every invocation; not helpful for regression
# testing.