summaryrefslogtreecommitdiff
path: root/run-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run-tests.sh')
-rwxr-xr-xrun-tests.sh12
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
5set -eu
6
7exec 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)'