summaryrefslogtreecommitdiff
path: root/run-tests.sh
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-19 07:30:03 +0300
committerGravatar Uko Kokņevičs2025-10-19 07:30:03 +0300
commit09babc46d92c4a1b85d619a4935459f7d6125c03 (patch)
tree76d7e43c1ee27525af53453a3d6aa872ee2774ab /run-tests.sh
parentMigrate packages from :ukkoclot to :ukkoclot/src (diff)
downloadukkoclot-09babc46d92c4a1b85d619a4935459f7d6125c03.tar.gz
ukkoclot-09babc46d92c4a1b85d619a4935459f7d6125c03.tar.xz
ukkoclot-09babc46d92c4a1b85d619a4935459f7d6125c03.zip
Add a read-write lock & a testsuite
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)'