diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2015-06-03 00:07:58 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2015-06-03 00:07:58 +0200 |
| commit | 0cbc7dd8dd00c92570f35f901b820a1ea96acdf0 (patch) | |
| tree | 7591b3cae8191a4bf4ec4092edb252c874792445 /test/Makefile.am | |
| parent | 5bc49de682eec79f3dc8096c6812bee70fe2d496 (diff) | |
Add space separated argument parser with quoting
Diffstat (limited to 'test/Makefile.am')
| -rw-r--r-- | test/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 3017b6f..5711aa4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2,7 +2,8 @@ MAINTAINERCLEANFILES = Makefile.in AM_CPPFLAGS = @DEFINES@ -I$(top_builddir)/src -TESTS = test-query-parser test-header-parser test-multipart-formdata-parser +TESTS = test-query-parser test-header-parser test-multipart-formdata-parser \ + test-args check_PROGRAMS = $(TESTS) @@ -14,3 +15,6 @@ test_header_parser_LDADD = $(top_srcdir)/src/libcgi.la test_multipart_formdata_parser_SOURCES = test-multipart-formdata-parser.cc test_multipart_formdata_parser_LDADD = $(top_srcdir)/src/libcgi.la + +test_args_SOURCES = test-args.cc +test_args_LDADD = $(top_srcdir)/src/libcgi.la |
