summaryrefslogtreecommitdiff
path: root/tests/port/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-24 14:04:18 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-24 14:04:18 +0100
commitc8808247d13af4a326e69e9c81f8dbf9a62af610 (patch)
tree7fe13322fc0dc64894c448ebc393c0a9a73c726a /tests/port/GNUmakefile
parentcac9269b115502071175436828c698d7cb4ddc5c (diff)
downloadwolfbones-c8808247d13af4a326e69e9c81f8dbf9a62af610.tar.gz
wolfbones-c8808247d13af4a326e69e9c81f8dbf9a62af610.tar.bz2
better testing: added TEST_ variables in makefiles, added TEST_<feature> macros in test_*.c for easier testing of stub functions
Diffstat (limited to 'tests/port/GNUmakefile')
-rw-r--r--tests/port/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/port/GNUmakefile b/tests/port/GNUmakefile
index 0e83dd8..8f2e455 100644
--- a/tests/port/GNUmakefile
+++ b/tests/port/GNUmakefile
@@ -6,7 +6,7 @@ INCLUDE_LIBS = \
INCLUDE_DIRS = \
-I$(TOPDIR)/include/wolf -I. -I$(TOPDIR)/src
-BINS = \
+TEST_BINS = \
test_strdup$(EXE) \
test_strerror_r$(EXE) \
test_strcasecmp$(EXE) \
@@ -20,7 +20,7 @@ local_clean:
local_distclean:
-local_test: all
+local_test:
@echo "Testing strdup.."
@./test_strdup >/dev/null
@echo "Testing strerror_r..."