libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit eb46a43bc014b1d5e151fc53996aef14c29fec55
parent aa338b48e4929af2609d758c054a585fc8e4c62e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu,  4 Aug 2016 11:59:12 +0000

-follow test naming conventions

Diffstat:
Msrc/microhttpd/Makefile.am | 12++++++------
Rsrc/microhttpd/unit_str_test.c -> src/microhttpd/test_str.c | 0
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am @@ -141,8 +141,8 @@ endif check_PROGRAMS = \ - unit_str_compare \ - unit_str_to_value \ + test_str_compare \ + test_str_to_value \ test_shutdown_select \ test_shutdown_poll \ test_daemon @@ -208,8 +208,8 @@ test_shutdown_poll_LDADD = \ $(PTHREAD_LIBS) endif -unit_str_compare_SOURCES = \ - unit_str_test.c test_helpers.h mhd_str.c +test_str_compare_SOURCES = \ + test_str.c test_helpers.h mhd_str.c -unit_str_to_value_SOURCES = \ - unit_str_test.c test_helpers.h mhd_str.c +test_str_to_value_SOURCES = \ + test_str.c test_helpers.h mhd_str.c diff --git a/src/microhttpd/unit_str_test.c b/src/microhttpd/test_str.c