#!/usr/bin/env bash # Deliberately NO pilot: the question is whether the game's own clock advances # in exactly the condition where nothing was observed to change. set -u export HOME=/sylph-home/re SDL_AUDIODRIVER=dummy DISPLAY=:98 export PYTHONPATH=/sylph-home/.local/lib/python3.12/site-packages SD="$(cd "$(dirname "$0")" && pwd)" "$SD/launch_mission.sh" fly || { echo "BOOT FAILED"; exit 1; } echo "--- NO pilot (unattended, by design)" python3 "$SD/timer_probe.py" "${1:-20}"; echo "TIMER DONE rc=$?"