From 7dd44580319c1f1d8f417b30fddbfaee65e4a4e1 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 20 Oct 2013 22:51:08 +0100 Subject: [PATCH] Rename test/run.sh to test.sh --- Makefile | 2 +- test/run.sh => test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename test/run.sh => test.sh (93%) 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