adjust run.sh so it runs all of the tests

This commit is contained in:
Robby Findler 2013-04-20 07:15:12 -05:00
parent a9286ce726
commit 085170c441

View File

@ -1,9 +1,16 @@
#!/bin/sh -x #!/bin/sh
gracket module-lang-test.rkt &&
gracket repl-test.rkt && ## use
gracket io.rkt && ## env RACKET=something ./run.sh
gracket language-test.rkt && ## to use a racket not in the path
gracket syncheck-test.rkt &&
gracket teachpack.rkt && files=`ls *.rkt | grep -v info.rkt | grep -v follow-log.rkt`
gracket save-teaching-lang-file.rkt &&
gracket test-suite-test.rkt if [ "$RACKET" == "" ]; then
RACKET=racket;
fi
for file in $files; do
echo STARTING $file
"$RACKET" $file
done