summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-08-11 18:43:31 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-08-13 13:11:48 +0100
commit78d53fff1f7cd6dc3a40c01ac3b31b0eb7ab7e21 (patch)
treeef7bb0ce511f16a800f3cc7a03e5c0f27783dd3d /test/Makefile
parentf23405f667e7514cff93ebc83cb6d1f7ab9005c0 (diff)
downloadnetsurf-78d53fff1f7cd6dc3a40c01ac3b31b0eb7ab7e21.tar.gz
netsurf-78d53fff1f7cd6dc3a40c01ac3b31b0eb7ab7e21.tar.bz2
Tests: Add some basic tests for date string parsing.
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