summaryrefslogtreecommitdiff
path: root/tests/port/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-24 13:30:02 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-24 13:30:02 +0100
commitbc7a5d8980f1d0a507f5593347ee425d864de79c (patch)
tree766baa18eff49167a606543b4555e15d375b362b /tests/port/GNUmakefile
parentb305975aaf8052277406ad11291bec3cdce93dff (diff)
downloadwolfbones-bc7a5d8980f1d0a507f5593347ee425d864de79c.tar.gz
wolfbones-bc7a5d8980f1d0a507f5593347ee425d864de79c.tar.bz2
added a simple itoa
Diffstat (limited to 'tests/port/GNUmakefile')
-rw-r--r--tests/port/GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/port/GNUmakefile b/tests/port/GNUmakefile
index 0b0f30c..47f0a61 100644
--- a/tests/port/GNUmakefile
+++ b/tests/port/GNUmakefile
@@ -14,7 +14,8 @@ TEST_BINS = \
test_localtime_r$(EXE) \
test_snprintf$(EXE) \
test_strlcpy$(EXE) \
- test_strlcat$(EXE)
+ test_strlcat$(EXE) \
+ test_itoa$(EXE)
-include $(TOPDIR)/makefiles/gmake/sub.mk
@@ -48,3 +49,5 @@ local_test:
@./test_strlcpy > /dev/null
@echo "Testing strlcat.."
@./test_strlcat > /dev/null
+ @echo "Testing itoa.."
+ @./test_itoa > /dev/null