initial version

This commit is contained in:
2025-05-01 00:46:36 +02:00
parent c40d790bd0
commit ab36746c6b
15 changed files with 40107 additions and 0 deletions

14
run_all_tests.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
set -x
go test ./...
cd tests || exit 1
for file in *.sh; do
if [ -d "$file" ]; then
continue
fi
./$file
done