Fixes for sprintf_test.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 11 Apr 2005 22:36:58 +0000 (22:36 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 11 Apr 2005 22:36:58 +0000 (22:36 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@402 38d2e660-2303-0410-9eaa-f027e97ec537

mware/sprintf_test.c
run_tests.sh

index 5e68e79fff77ecfb92e5ead6e78e87bb2522dc41..0f4758f9bf593e844eb6dd0ccf9879da3cf90256 100755 (executable)
@@ -1,5 +1,6 @@
 #include "sprintf.c"
 #include "formatwr.c"
+#include "hex.c"
 
 #include <assert.h> /* assert() */
 #include <string.h> /* strcmp() */
index 8a79b2726b2e0dcaae38360b2fe3b656064e2da8..a2199dcdbe0d4d36937c97e54cca36eea214e674 100755 (executable)
@@ -8,6 +8,9 @@
 # $Id$
 #
 # $Log$
+# Revision 1.3  2005/04/11 22:36:29  bernie
+# Fixes for sprintf_test.
+#
 # Revision 1.2  2005/02/28 10:46:44  bernie
 # Remove test binaries.
 #
 VERBOSE=1
 
 CC=gcc
-CFLAGS="-W -Wall -Wextra"
+CFLAGS="-W -Wall -Wextra -I. -fno-builtin -D_DEBUG"
 
 CXX=g++
-CXXFLAGS="-W -Wall -Wextra"
+CXXFLAGS="$CFLAGS"
 
 
 for test in `find . -name "*_test.*"`; do