From 85689f911104fa8dcf31b97cfa510a39755bf1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 8 Dec 2006 21:23:45 +0000 Subject: added makefile which calls runtests.sh (with a settable PD) svn path=/trunk/externals/iem/iemmatrix/; revision=6751 --- tests/Makefile | 9 +++++++++ tests/runtests.sh | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 tests/Makefile diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..0176cda --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,9 @@ +default: nogui + + +nogui: + sh runtests.sh + +gui: + sh runtests.sh -gui + diff --git a/tests/runtests.sh b/tests/runtests.sh index 27c4972..312b3ea 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -1,5 +1,10 @@ #!/bin/sh +if [ "x${PD}" = "x" ] +then + PD=pd +fi + RUNTESTS_TXT=runtests.txt RUNTESTS_LOG=runtests.log -- cgit v1.2.1