diff options
| author | 2025-10-19 07:30:03 +0300 | |
|---|---|---|
| committer | 2025-10-19 07:30:03 +0300 | |
| commit | 09babc46d92c4a1b85d619a4935459f7d6125c03 (patch) | |
| tree | 76d7e43c1ee27525af53453a3d6aa872ee2774ab /run-tests.sh | |
| parent | Migrate packages from :ukkoclot to :ukkoclot/src (diff) | |
| download | ukkoclot-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-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)' | ||