diff --git a/Makefile b/Makefile index 82642c6..7077688 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ build: ./build.sh test: build - test/run.sh + ./test.sh .SILENT: .PHONY: build test diff --git a/test/run.sh b/test.sh similarity index 93% rename from test/run.sh rename to test.sh index d59609b..1fa50af 100755 --- a/test/run.sh +++ b/test.sh @@ -19,7 +19,7 @@ abs_dirname() { } -testdir="$(abs_dirname "$0")" +testdir="$(abs_dirname "$0")/test" testfiles="$(find "$testdir" -name "*-test.sh")" RET=0