summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2023-04-17 21:52:30 +0200
committerJoel Klinghed <the_jk@spawned.biz>2023-04-17 21:52:30 +0200
commita65df5d6b21233e7058afff0e1cd8e7e0ec193ac (patch)
tree24c6f93c8dc32d946a9d8b2d6f66f7317d3e4e64 /test
parent67362896a37742e880025b9c85c4fe49d690ba02 (diff)
Replace build system: autoconf -> meson
Diffstat (limited to 'test')
-rw-r--r--test/.gitignore7
-rw-r--r--test/Makefile.am23
2 files changed, 0 insertions, 30 deletions
diff --git a/test/.gitignore b/test/.gitignore
deleted file mode 100644
index 2099e3a..0000000
--- a/test/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-/test-*.log
-/*.trs
-/test-header-parser
-/test-multipart-formdata-parser
-/test-query-parser
-/test-args
-/test-json
diff --git a/test/Makefile.am b/test/Makefile.am
deleted file mode 100644
index 9636062..0000000
--- a/test/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-MAINTAINERCLEANFILES = Makefile.in
-
-AM_CPPFLAGS = @DEFINES@ -I$(top_builddir)/src
-
-TESTS = test-query-parser test-header-parser test-multipart-formdata-parser \
- test-args test-json
-
-check_PROGRAMS = $(TESTS)
-
-test_query_parser_SOURCES = test-query-parser.cc
-test_query_parser_LDADD = $(top_srcdir)/src/libcgi.la
-
-test_header_parser_SOURCES = test-header-parser.cc
-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
-
-test_json_SOURCES = test-json.cc
-test_json_LDADD = $(top_srcdir)/src/libjson.la