CI: add simple runtime test

This commit is contained in:
Consolatis 2024-03-13 15:26:16 +01:00
parent cdac800692
commit 53fc8d5e39
4 changed files with 105 additions and 3 deletions

13
scripts/ci/ci_autostart.sh Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
if test -z "$LABWC_PID"; then
echo "LABWC_PID not set" >&2
exit 1
fi
echo "Running with pid $LABWC_PID"
# Could add runtime tests here
echo "killing labwc"
kill -s TERM $LABWC_PID