Better test suite for nbfi

This commit is contained in:
Veit Heller
2014-10-06 14:30:11 +02:00
parent 308e942ffd
commit 834ff4cd41
2 changed files with 9 additions and 0 deletions

View File

@@ -12,6 +12,10 @@ all:
@echo
@echo Running tests:
@echo
make tests
# Runs the tests
tests:
./test.sh
#Uses picky extensions and makes everything(Extensions may break compiling)

View File

@@ -1,5 +1,10 @@
#!/bin/bash
for i in `ls test` ; do
echo Running test $i:
echo ---------------------
bin/nbfi test/$i
echo ---------------------
echo End of test $i
echo
done