(Arne Babenhauserheide)
2014-07-15: rename test.sh to syntaxtests.sh to get more meaningful output from rename test.sh to syntaxtests.sh to get more meaningful output from make check and make distcheck.
diff --git a/Makefile.am b/Makefile.am --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,7 @@ wisp = wisp.scm language/wisp/spec.scm wisp_SOURCES = wisp-guile.w wisp-reader.w EXTRA_DIST = $(wisp_SOURCES) $(wisp_DATA) bootstrap.sh wisp.py examples tests runtests.sh wisp-repl-guile.sh CLEANFILES = ${wisp} ChangeLog -DISTCLEANFILES = ${CLEANFILES} @abs_top_builddir@/1 @abs_top_builddir@/2 @abs_top_builddir@/test.sh +DISTCLEANFILES = ${CLEANFILES} @abs_top_builddir@/1 @abs_top_builddir@/2 @abs_top_builddir@/syntaxtests.sh all : ${wisp} @@ -16,10 +16,10 @@ ChangeLog : input.in.intermediate: ${wisp_SOURCES} @abs_top_srcdir@/bootstrap.sh @abs_top_srcdir@ @guile@ @python3@ -.PHONY: test.sh -test.sh : wisp.scm runtests.sh - echo '#!/bin/bash' > @abs_top_builddir@/test.sh - echo @abs_top_srcdir@/runtests.sh @abs_top_srcdir@ @abs_top_builddir@ >> @abs_top_builddir@/test.sh - chmod +x @abs_top_builddir@/test.sh +.PHONY: syntaxtests.sh +syntaxtests.sh : wisp.scm runtests.sh + echo '#!/bin/bash' > @abs_top_builddir@/syntaxtests.sh + echo @abs_top_srcdir@/runtests.sh @abs_top_srcdir@ @abs_top_builddir@ >> @abs_top_builddir@/syntaxtests.sh + chmod +x @abs_top_builddir@/syntaxtests.sh -TESTS=test.sh +TESTS=syntaxtests.sh