summaryrefslogtreecommitdiff
path: root/tests/port/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-28 11:46:52 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-28 11:46:52 +0100
commitb4cf78d1eaed900aa6acbcab01bc8693c88b0275 (patch)
treea4682a8004ee45b46f4f6d4c5e5b980ec1692ea1 /tests/port/GNUmakefile
parent2e27ca524f38f537e6bf706c7aa7dce79a745e17 (diff)
downloadwolfbones-b4cf78d1eaed900aa6acbcab01bc8693c88b0275.tar.gz
wolfbones-b4cf78d1eaed900aa6acbcab01bc8693c88b0275.tar.bz2
added localtime_r and a stub (which needs mutexes, which we still have to port!)
Diffstat (limited to 'tests/port/GNUmakefile')
-rw-r--r--tests/port/GNUmakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/port/GNUmakefile b/tests/port/GNUmakefile
index 0410187..dd28702 100644
--- a/tests/port/GNUmakefile
+++ b/tests/port/GNUmakefile
@@ -10,7 +10,8 @@ TEST_BINS = \
test_strdup$(EXE) \
test_strerror_r$(EXE) \
test_strcasecmp$(EXE) \
- test_strncasecmp$(EXE)
+ test_strncasecmp$(EXE) \
+ test_localtime_r$(EXE)
-include $(TOPDIR)/makefiles/gmake/sub.mk
@@ -29,4 +30,5 @@ local_test:
@./test_strcasecmp >/dev/null
@echo "Testing strncasecmp.."
@./test_strncasecmp >/dev/null
-
+ @echo "Testing localtime_r.."
+ @./test_localtime_r >/dev/null