summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-08-13 13:36:17 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-08-13 13:36:17 +0100
commit91f4f89d4c864c6ce0170d60a13a29aed56fea5d (patch)
tree2118f4f5b478ec66439c41fe14ccdfae4ad236e4 /test/Makefile
parent6a3f7a386ed7912d19971dec9235ad98692c22c1 (diff)
parentfe00eac8cb0740b74ec2f586d98e741c84299d90 (diff)
downloadnetsurf-91f4f89d4c864c6ce0170d60a13a29aed56fea5d.tar.gz
netsurf-91f4f89d4c864c6ce0170d60a13a29aed56fea5d.tar.bz2
Merge branch 'tlsa/date'
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 0253f4dc0..d62e2fd8d 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,7 +1,16 @@
#
# NetSurf unit tests
-TESTS := nsurl urldbtest nsoption bloom hashtable urlescape utils messages #llcache
+TESTS := \
+ nsurl \
+ urldbtest \
+ nsoption \
+ bloom \
+ hashtable \
+ urlescape \
+ utils \
+ messages \
+ time #llcache
# nsurl sources
nsurl_SRCS := utils/corestrings.c utils/nsurl.c utils/idna.c \
@@ -44,6 +53,9 @@ urlescape_SRCS := utils/url.c test/log.c test/urlescape.c
utils_SRCS := utils/utils.c utils/messages.c utils/hashtable.c \
test/log.c test/utils.c
+# time test sources
+time_SRCS := utils/time.c test/log.c test/time.c
+
# Coverage builds need additional flags
ifeq ($(MAKECMDGOALS),coverage)
COV_CFLAGS ?= -fprofile-arcs -ftest-coverage -O0