diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-03-29 15:57:58 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-03-29 15:57:58 +0000 |
commit | c7818b51b52649e1b35b61d8e6e6a855399eba9a (patch) | |
tree | 78162d64cb6440a3784c121833e3677c9b1b22f2 | |
parent | bcc8e2ae2f03a636ad3230ac2c5f8bda007c1a9f (diff) | |
download | libmicrohttpd-c7818b51b52649e1b35b61d8e6e6a855399eba9a.tar.gz libmicrohttpd-c7818b51b52649e1b35b61d8e6e6a855399eba9a.zip |
-renaming for consistency
-rw-r--r-- | src/testzzuf/Makefile.am | 107 | ||||
-rw-r--r-- | src/testzzuf/test_get.c (renamed from src/testzzuf/daemontest_get.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_get_chunked.c (renamed from src/testzzuf/daemontest_get_chunked.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_long_header.c (renamed from src/testzzuf/daemontest_long_header.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_post.c (renamed from src/testzzuf/daemontest_post.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_post_form.c (renamed from src/testzzuf/daemontest_postform.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_put.c (renamed from src/testzzuf/daemontest_put.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_put_chunked.c (renamed from src/testzzuf/daemontest_put_chunked.c) | 0 | ||||
-rw-r--r-- | src/testzzuf/test_put_large.c (renamed from src/testzzuf/daemontest_large_put.c) | 0 |
9 files changed, 54 insertions, 53 deletions
diff --git a/src/testzzuf/Makefile.am b/src/testzzuf/Makefile.am index a50c9e3a..688f0cbb 100644 --- a/src/testzzuf/Makefile.am +++ b/src/testzzuf/Makefile.am | |||
@@ -13,97 +13,98 @@ INCLUDES = $(PLIBC_INCLUDE) -I$(top_srcdir)/src/include | |||
13 | EXTRA_DIST = README socat.c | 13 | EXTRA_DIST = README socat.c |
14 | 14 | ||
15 | check_PROGRAMS = \ | 15 | check_PROGRAMS = \ |
16 | daemontest_get \ | 16 | test_get \ |
17 | daemontest_post \ | 17 | test_get_chunked \ |
18 | daemontest_postform \ | 18 | test_post \ |
19 | daemontest_put \ | 19 | test_post_form \ |
20 | daemontest_large_put \ | 20 | test_put \ |
21 | daemontest_get11 \ | 21 | test_put_chunked \ |
22 | daemontest_post11 \ | 22 | test_put_large \ |
23 | daemontest_postform11 \ | 23 | test_get11 \ |
24 | daemontest_put11 \ | 24 | test_post11 \ |
25 | daemontest_large_put11 \ | 25 | test_post_form11 \ |
26 | daemontest_long_header \ | 26 | test_put11 \ |
27 | daemontest_get_chunked \ | 27 | test_put_large11 \ |
28 | daemontest_put_chunked | 28 | test_long_header |
29 | 29 | ||
30 | TESTS = $(check_PROGRAMS) | 30 | TESTS = $(check_PROGRAMS) |
31 | 31 | ||
32 | daemontest_get_SOURCES = \ | 32 | test_get_SOURCES = \ |
33 | daemontest_get.c | 33 | test_get.c |
34 | daemontest_get_LDADD = \ | 34 | test_get_LDADD = \ |
35 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 35 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
36 | @LIBCURL@ | 36 | @LIBCURL@ |
37 | 37 | ||
38 | daemontest_get_chunked_SOURCES = \ | 38 | test_get_chunked_SOURCES = \ |
39 | daemontest_get_chunked.c | 39 | test_get_chunked.c |
40 | daemontest_get_chunked_LDADD = \ | 40 | test_get_chunked_LDADD = \ |
41 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 41 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
42 | @LIBCURL@ | 42 | @LIBCURL@ |
43 | 43 | ||
44 | daemontest_post_SOURCES = \ | 44 | test_post_SOURCES = \ |
45 | daemontest_post.c | 45 | test_post.c |
46 | daemontest_post_LDADD = \ | 46 | test_post_LDADD = \ |
47 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 47 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
48 | @LIBCURL@ | 48 | @LIBCURL@ |
49 | 49 | ||
50 | daemontest_postform_SOURCES = \ | 50 | test_post_form_SOURCES = \ |
51 | daemontest_postform.c | 51 | test_post_form.c |
52 | daemontest_postform_LDADD = \ | 52 | test_post_form_LDADD = \ |
53 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 53 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
54 | @LIBCURL@ | 54 | @LIBCURL@ |
55 | 55 | ||
56 | daemontest_put_SOURCES = \ | 56 | test_put_SOURCES = \ |
57 | daemontest_put.c | 57 | test_put.c |
58 | daemontest_put_LDADD = \ | 58 | test_put_LDADD = \ |
59 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 59 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
60 | @LIBCURL@ | 60 | @LIBCURL@ |
61 | 61 | ||
62 | daemontest_put_chunked_SOURCES = \ | 62 | test_put_chunked_SOURCES = \ |
63 | daemontest_put_chunked.c | 63 | test_put_chunked.c |
64 | daemontest_put_chunked_LDADD = \ | 64 | test_put_chunked_LDADD = \ |
65 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 65 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
66 | @LIBCURL@ | 66 | @LIBCURL@ |
67 | 67 | ||
68 | daemontest_get11_SOURCES = \ | 68 | test_put_large_SOURCES = \ |
69 | daemontest_get.c | 69 | test_put_large.c |
70 | daemontest_get11_LDADD = \ | 70 | test_put_large_LDADD = \ |
71 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 71 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
72 | @LIBCURL@ | 72 | @LIBCURL@ |
73 | 73 | ||
74 | daemontest_post11_SOURCES = \ | 74 | |
75 | daemontest_post.c | 75 | |
76 | daemontest_post11_LDADD = \ | 76 | test_get11_SOURCES = \ |
77 | test_get.c | ||
78 | test_get11_LDADD = \ | ||
77 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 79 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
78 | @LIBCURL@ | 80 | @LIBCURL@ |
79 | 81 | ||
80 | daemontest_postform11_SOURCES = \ | 82 | test_post11_SOURCES = \ |
81 | daemontest_postform.c | 83 | test_post.c |
82 | daemontest_postform11_LDADD = \ | 84 | test_post11_LDADD = \ |
83 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 85 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
84 | @LIBCURL@ | 86 | @LIBCURL@ |
85 | 87 | ||
86 | daemontest_put11_SOURCES = \ | 88 | test_post_form11_SOURCES = \ |
87 | daemontest_put.c | 89 | test_post_form.c |
88 | daemontest_put11_LDADD = \ | 90 | test_post_form11_LDADD = \ |
89 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 91 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
90 | @LIBCURL@ | 92 | @LIBCURL@ |
91 | 93 | ||
92 | 94 | test_put11_SOURCES = \ | |
93 | daemontest_large_put_SOURCES = \ | 95 | test_put.c |
94 | daemontest_large_put.c | 96 | test_put11_LDADD = \ |
95 | daemontest_large_put_LDADD = \ | ||
96 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 97 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
97 | @LIBCURL@ | 98 | @LIBCURL@ |
98 | 99 | ||
99 | daemontest_large_put11_SOURCES = \ | 100 | test_put_large11_SOURCES = \ |
100 | daemontest_large_put.c | 101 | test_put_large.c |
101 | daemontest_large_put11_LDADD = \ | 102 | test_put_large11_LDADD = \ |
102 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 103 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
103 | @LIBCURL@ | 104 | @LIBCURL@ |
104 | 105 | ||
105 | daemontest_long_header_SOURCES = \ | 106 | test_long_header_SOURCES = \ |
106 | daemontest_long_header.c | 107 | test_long_header.c |
107 | daemontest_long_header_LDADD = \ | 108 | test_long_header_LDADD = \ |
108 | $(top_builddir)/src/daemon/libmicrohttpd.la \ | 109 | $(top_builddir)/src/daemon/libmicrohttpd.la \ |
109 | @LIBCURL@ | 110 | @LIBCURL@ |
diff --git a/src/testzzuf/daemontest_get.c b/src/testzzuf/test_get.c index 4aed7fb5..4aed7fb5 100644 --- a/src/testzzuf/daemontest_get.c +++ b/src/testzzuf/test_get.c | |||
diff --git a/src/testzzuf/daemontest_get_chunked.c b/src/testzzuf/test_get_chunked.c index 35eed49d..35eed49d 100644 --- a/src/testzzuf/daemontest_get_chunked.c +++ b/src/testzzuf/test_get_chunked.c | |||
diff --git a/src/testzzuf/daemontest_long_header.c b/src/testzzuf/test_long_header.c index d285768f..d285768f 100644 --- a/src/testzzuf/daemontest_long_header.c +++ b/src/testzzuf/test_long_header.c | |||
diff --git a/src/testzzuf/daemontest_post.c b/src/testzzuf/test_post.c index 66077b4f..66077b4f 100644 --- a/src/testzzuf/daemontest_post.c +++ b/src/testzzuf/test_post.c | |||
diff --git a/src/testzzuf/daemontest_postform.c b/src/testzzuf/test_post_form.c index 873c7fef..873c7fef 100644 --- a/src/testzzuf/daemontest_postform.c +++ b/src/testzzuf/test_post_form.c | |||
diff --git a/src/testzzuf/daemontest_put.c b/src/testzzuf/test_put.c index c658c39c..c658c39c 100644 --- a/src/testzzuf/daemontest_put.c +++ b/src/testzzuf/test_put.c | |||
diff --git a/src/testzzuf/daemontest_put_chunked.c b/src/testzzuf/test_put_chunked.c index 47d0f0ba..47d0f0ba 100644 --- a/src/testzzuf/daemontest_put_chunked.c +++ b/src/testzzuf/test_put_chunked.c | |||
diff --git a/src/testzzuf/daemontest_large_put.c b/src/testzzuf/test_put_large.c index 10fc8b06..10fc8b06 100644 --- a/src/testzzuf/daemontest_large_put.c +++ b/src/testzzuf/test_put_large.c | |||