Slightly improved the tests

This commit is contained in:
Pierre Pronchery 2013-10-25 22:04:28 +02:00
parent fbf1591c76
commit 756b50e818
3 changed files with 47 additions and 7 deletions

View File

@ -32,7 +32,7 @@ variable_LDFLAGS = $(LDFLAGSF) $(LDFLAGS)
variable: $(variable_OBJS)
$(CC) -o variable $(variable_OBJS) $(variable_LDFLAGS)
tests.log: string variable
tests.log: string tests.sh variable
./tests.sh -P "$(PREFIX)" -- "tests.log"
string.o: string.c ../src/string.c

View File

@ -16,7 +16,7 @@ depends=../src/string.c
[tests.log]
type=script
script=./tests.sh
depends=string,variable
depends=string,tests.sh,variable
[variable]
type=binary

View File

@ -16,6 +16,43 @@
#functions
#fail
_fail()
{
test="$1"
shift
echo -n "$test:" 1>&2
"./$test" "$@" >> "$target"
res=$?
if [ $res -ne 0 ]; then
echo " FAILED (expected, error $res)" 1>&2
else
echo " PASS (unexpected)" 1>&2
fi
}
#test
_test()
{
test="$1"
shift
echo -n "$test:" 1>&2
"./$test" "$@" >> "$target"
res=$?
if [ $res -ne 0 ]; then
echo " FAILED" 1>&2
FAILED="$FAILED $test(error $res)"
return 2
else
echo " PASS" 1>&2
return 0
fi
}
#usage
_usage()
{
@ -51,8 +88,11 @@ target="$1"
> "$target"
FAILED=
./string >> "$target" 2>&1 || FAILED="$FAILED string"
./variable >> "$target" 2>&1 || FAILED="$FAILED variable"
[ -z "$FAILED" ] && exit 0
echo "Failed tests:$FAILED" 1>&2
exit 2
echo "Performing tests:" 1>&2
_test "string"
_test "variable"
if [ -n "$FAILED" ]; then
echo "Failed tests:$FAILED" 1>&2
exit 2
fi
echo "All tests completed" 1>&2