X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Frun-tests.sh;h=9b75c37374bcee448bd5ff775b27fa624b2dbd21;hb=06cb0db045562ab583358e2ee7090c606e1dfe42;hp=7c7da12d8e82deed05d47080dd46f68c0f9c9b59;hpb=e4eb979046e594444cf5972801ea5f4a5eb1a7c7;p=sbcl.git diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 7c7da12..9b75c37 100644 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -3,7 +3,7 @@ # Run the regression tests in this directory. # how we invoke SBCL -sbcl=${1:-sbcl --noprint --noprogrammer} +sbcl=${1:-sbcl --noinform --noprint --noprogrammer} # "Ten four" is the closest numerical slang I can find to "OK", so # it's the return value we expect from a successful test. @@ -12,31 +12,51 @@ tenfour () { echo ok else echo test failed: $? - return 1 + exit 1 fi } # *.pure.lisp files are ordinary Lisp code with no side effects, # and we can run them all in a single Lisp process. -(for f in *.pure.lisp; do echo \"$f\"; done) | $sbcl ; tenfour +echo //running '*.pure.lisp' tests +echo //i.e. *.pure.lisp +(for f in *.pure.lisp; do + echo "(progn" + if [ -f $f ]; then + echo " (progn (format t \"//running $f test~%\") (load \"$f\"))" + fi + echo " (sb-ext:quit :unix-status 104))" +done) | $sbcl ; tenfour # *.impure.lisp files are Lisp code with side effects (e.g. doing DEFSTRUCT # or DEFTYPE or DEFVAR). Each one needs to be run as a separate # invocation of Lisp. +echo //running '*.impure.lisp' tests for f in *.impure.lisp; do - echo $f | $sbcl ; tenfour + if [ -f $f ]; then + echo //running $f test + echo "(load \"$f\")" | $sbcl ; tenfour + fi done # *.test.sh files are scripts to test stuff, typically stuff which can't # so easily be tested within Lisp itself. A file foo.test.sh # may be associated with other files foo*, e.g. foo.lisp, foo-1.lisp, # or foo.pl. +echo //running '*.test.sh' tests for f in *.test.sh; do - sh $f ; tenfour + if [ -f $f ]; then + echo //running $f test + sh $f ; tenfour + fi done # *.assertoids files contain ASSERTOID statements to test things # interpreted and at various compilation levels. +echo //running '*.assertoids' tests for f in *.assertoids; do - echo "(load \"$f\")" | $sbcl --eval '(load "assertoid.lisp")' ; tenfour + if [ -f $f ]; then + echo //running $f test + echo "(load \"$f\")" | $sbcl --eval '(load "assertoid.lisp")' ; tenfour + fi done