summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-08-04 00:19:48 +0100
committerVincent Sanders <vince@kyllikki.org>2016-08-04 00:19:48 +0100
commite8df81fdb3ab94977c42a4a0fed082602308f3c6 (patch)
tree439977d7b6ae46084841d76f7a5349a1938e77a4 /test/Makefile
parent5a73f0797fe8b3c1350bc57405e789517478bc36 (diff)
downloadnetsurf-e8df81fdb3ab94977c42a4a0fed082602308f3c6.tar.gz
netsurf-e8df81fdb3ab94977c42a4a0fed082602308f3c6.tar.bz2
add tests for utility string handling
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index ea16b0a8d..81976389f 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,7 +1,7 @@
#
# NetSurf unit tests
-TESTS := nsurl urldbtest nsoption bloom hashtable urlescape #llcache
+TESTS := nsurl urldbtest nsoption bloom hashtable urlescape utils #llcache
# nsurl sources
nsurl_SRCS := utils/corestrings.c utils/nsurl.c utils/idna.c \
@@ -37,6 +37,10 @@ hashtable_SRCS := utils/hashtable.c test/log.c test/hashtable.c
# url escape test sources
urlescape_SRCS := utils/url.c test/log.c test/urlescape.c
+# utility test sources
+utils_SRCS := utils/utils.c utils/messages.c utils/hashtable.c \
+ test/log.c test/utils.c
+
# Coverage builds need additional flags
ifeq ($(MAKECMDGOALS),coverage)
COV_CFLAGS ?= -fprofile-arcs -ftest-coverage -O0