3 # This software is part of the SBCL system. See the README file for
6 # While most of SBCL is derived from the CMU CL system, the test
7 # files (like this one) were written from scratch after the fork
10 # This software is in the public domain and is provided with
11 # absolutely no warranty. See the COPYING and CREDITS files for
14 if [ "$1" = "--help" ]; then
16 Run the regression tests in this directory.
18 Usage: $0 [OPTIONS] [files]
22 --break-on-failure Break into the debugger when a test fails
24 --break-on-expected-failure Break into the debugger when any test fails
25 --report-skipped-tests Include tests :skipped-on target SBCL in
27 --no-color Disable coloring of results.
29 If no test files are specified, runs all tests.
37 echo /running tests on \'$SBCL_RUNTIME --core $SBCL_CORE $SBCL_ARGS\'
40 if [ $1 = $EXIT_TEST_WIN ]; then
43 echo test failed, expected $EXIT_TEST_WIN return code, got $1
49 --eval '(with-compilation-unit () (load "run-tests.lisp"))' \
50 --eval '(run-tests::run-all)' $*
54 echo '//apparent success (reached end of run-tests.sh normally)'