Raymond Toy pushed to branch issue-360-add-site-init at cmucl / cmucl
Commits:
-
6120d2c9
by Raymond Toy at 2024-11-29T11:53:16-08:00
1 changed file:
Changes:
... | ... | @@ -54,7 +54,7 @@ trap cleanup EXIT |
54 | 54 | |
55 | 55 | if [ $# -eq 0 ]; then
|
56 | 56 | # No args so run all the tests
|
57 | - $LISP -noinit -load tests/run-tests.lisp -eval '(cmucl-test-runner:run-all-tests)'
|
|
57 | + $LISP -nositeinit -noinit -load tests/run-tests.lisp -eval '(cmucl-test-runner:run-all-tests)'
|
|
58 | 58 | else
|
59 | 59 | # Run selected files. Convert each file name to uppercase and append "-TESTS"
|
60 | 60 | result=""
|
... | ... | @@ -63,6 +63,6 @@ else |
63 | 63 | new=`echo $f | tr '[a-z]' '[A-Z]'`
|
64 | 64 | result="$result "\"$new-TESTS\"
|
65 | 65 | done
|
66 | - $LISP -noinit -load tests/run-tests.lisp -eval "(progn (cmucl-test-runner:load-test-files) (cmucl-test-runner:run-test $result))"
|
|
66 | + $LISP -nositeinit -noinit -load tests/run-tests.lisp -eval "(progn (cmucl-test-runner:load-test-files) (cmucl-test-runner:run-test $result))"
|
|
67 | 67 | fi
|
68 | 68 |