3 # Copyright Develer S.r.l. (http://www.develer.com/)
6 # Author: Bernardo Innocenti <bernie@develer.com>
11 # Revision 1.3 2005/04/11 22:36:29 bernie
12 # Fixes for sprintf_test.
14 # Revision 1.2 2005/02/28 10:46:44 bernie
15 # Remove test binaries.
17 # Revision 1.1 2005/02/01 06:59:24 bernie
18 # Really trivial testsuite framework.
25 CFLAGS="-W -Wall -Wextra -I. -fno-builtin -D_DEBUG"
31 for test in `find . -name "*_test.*"`; do
32 [ $VERBOSE -gt 0 ] && echo "Running $test..."
35 $CXX $CXXFLAGS $test -o test || exit 1
40 $CC $CFLAGS $test -o test || exit 1