darkhttpd/run-tests.sh

8 lines
338 B
Bash
Raw Normal View History

2006-12-13 11:14:27 +03:00
#!/bin/sh
2006-12-13 11:29:53 +03:00
BDECFLAGS="-W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
-Wcast-qual -Wchar-subscripts -Winline -Wmissing-prototypes -Wnested-externs \
-Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings"
2006-12-13 11:14:27 +03:00
2006-12-13 11:29:53 +03:00
(cc $BDECFLAGS -g -O -DDEBUG test_make_safe_uri.c -o test_make_safe_uri &&
2006-12-13 11:14:27 +03:00
./test_make_safe_uri)