diff options
Diffstat (limited to 'run-tests.sh')
| -rwxr-xr-x | run-tests.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/run-tests.sh b/run-tests.sh new file mode 100755 index 0000000..f8338b3 --- /dev/null +++ b/run-tests.sh | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # SPDX-License-Identifier: EUPL-1.2 | ||
| 3 | # SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | ||
| 4 | |||
| 5 | set -eu | ||
| 6 | |||
| 7 | exec sbcl \ | ||
| 8 | --disable-ldb --lose-on-corruption \ | ||
| 9 | --noinform --noprint --non-interactive \ | ||
| 10 | --eval '(asdf:load-system :ukkoclot/test/all)' \ | ||
| 11 | --eval '(setf ukkoclot/test/all:*should-quit* t)' \ | ||
| 12 | --eval '(asdf:test-system :ukkoclot)' | ||