summaryrefslogtreecommitdiff
path: root/tests/port/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-22 18:54:28 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-22 18:54:28 +0100
commitd92e188e4b4c53e89ba55ae54a10802f156fdf19 (patch)
treefc177ff92704aecb47a1a8d8a6e0971dfdd8ad05 /tests/port/GNUmakefile
parent2b55ffee666c795e5b639cacf147ab4798b17044 (diff)
downloadwolfbones-d92e188e4b4c53e89ba55ae54a10802f156fdf19.tar.gz
wolfbones-d92e188e4b4c53e89ba55ae54a10802f156fdf19.tar.bz2
started to add string.h replacements
Diffstat (limited to 'tests/port/GNUmakefile')
-rw-r--r--tests/port/GNUmakefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/port/GNUmakefile b/tests/port/GNUmakefile
index 228fe92..e8e3257 100644
--- a/tests/port/GNUmakefile
+++ b/tests/port/GNUmakefile
@@ -8,7 +8,8 @@ INCLUDE_DIRS = \
BINS = \
test_strdup$(EXE) \
- test_strerror_r$(EXE)
+ test_strerror_r$(EXE) \
+ test_strcasecmp$(EXE)
-include $(TOPDIR)/makefiles/sub.mk
@@ -23,3 +24,6 @@ local_test: all
@./test_strdup >/dev/null
@echo "Testing strerror_r..."
@./test_strerror_r >/dev/null
+ @echo "Testing strcasecmp.."
+ @./test_strcasecmp >/dev/null
+