From 834ff4cd411988f6885fc7de811c73283584b36f Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Mon, 6 Oct 2014 14:30:11 +0200 Subject: [PATCH] Better test suite for nbfi --- nbfi/Makefile | 4 ++++ nbfi/test.sh | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/nbfi/Makefile b/nbfi/Makefile index 6c8bb34..eab8e17 100644 --- a/nbfi/Makefile +++ b/nbfi/Makefile @@ -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) diff --git a/nbfi/test.sh b/nbfi/test.sh index c1e5bb5..87d5ef8 100755 --- a/nbfi/test.sh +++ b/nbfi/test.sh @@ -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