From: Avery Pennarun Date: Fri, 1 May 2009 00:58:08 +0000 (-0400) Subject: Add toplevel and python/ 'make test' example targets. X-Git-Url: http://rtime.felk.cvut.cz/gitweb/wvtest.git/commitdiff_plain/7487c2c04a49e61ae17ce3ee3a0ee6714040c8ed Add toplevel and python/ 'make test' example targets. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..42f5a4b --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +all: + @echo "There's nothing to build here, really." + @echo + @echo "Try: make test" + +runtests: + make -C python test + +test: + ./wvtestrunner.pl $(MAKE) runtests diff --git a/python/Makefile b/python/Makefile new file mode 100644 index 0000000..5593e98 --- /dev/null +++ b/python/Makefile @@ -0,0 +1,9 @@ + +all: + @echo "Try: make test" + @false + +test: + ../wvtestrunner.pl python wvtestmain.py \ + $(patsubst ./%t,%t/*.py,$(shell find -type d -name t)) +