feat: anchor first checkpoint for cold restart

This commit is contained in:
MaxTomahawk
2026-08-11 08:59:47 +02:00
parent 4e20f4585f
commit 4db97164bb
9 changed files with 305 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/../.."
test_root="$(mktemp -d)"
trap 'rm -rf "$test_root"' EXIT
"${LUA:-luajit}" tests/integration/title_checkpoint_cold_start.lua capture "$test_root"
"${LUA:-luajit}" tests/integration/title_checkpoint_cold_start.lua resume "$test_root"