From cd881f872920e15fda26b619a889e8eb37f6e72e Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 4 Apr 2009 18:03:43 +0000 Subject: [PATCH] Check for sparse before starting the regression tests. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@749 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index 855a0b43f..b2665fa4f 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -480,6 +480,10 @@ fi # Regression tests # #################### +if [ "$(type -p sparse)" = "" ]; then + echo "Error: sparse has not yet been installed." +fi + if ! mkdir -p "${outputdir}"; then if [ -e "${outputdir}" ]; then echo "Error: directory ${outputdir} already exists."