`sots_turn` loads a save through the engine's own reader, walks the published phase order of all three turn drivers, runs what we hold, prints what we do not, and writes the result back through the engine's own writer. The phase catalog carries all 32 + 12 + 37 phases whether or not they are implemented, so an unimplemented phase is a named no-op that appears in the run log rather than a silent absence. 14 of the 44 turn-driver phases are modelled, 7 commit anything, 2 of the 37 tail phases are modelled. Modelled but NOT committed is a first-class state. A phase whose formula we hold and whose inputs we do not is evaluated, reported, and left unwritten unless --commit-blocked is passed. That distinction was earned: committing phase 31's player-status restore regressed two leaves that had agreed with the oracle before the turn, because the phase writes 1 and the file carries 4. Measured against the game's own post-turn saves, leaves localised by state_checksum.py with coverage proved by re-serialisation: turn1-state -> turn2-state 209 -> 204 diverging, closed 5, regressed 0 turn2-state -> turn3-state 108 -> 103 diverging, closed 5, regressed 0 Two tests: app_catalog (the tables stay complete and nothing claims to be verified against a live game) and app_turn (11 saves driven; an untouched load re-serialises byte-identically, a turn leaves the file re-readable, and no blocked or stub phase writes anything). Skips cleanly without SOTS_SAVES_DIR. ctest 38/38, clean-room OK. src/shim untouched. docs/S-standalone.md has the full gap list. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ARBgSooAfokKUy6wKUKEyZ
17 lines
732 B
CMake
17 lines
732 B
CMake
# Standalone turn-driver tests.
|
|
#
|
|
# test_catalog needs nothing but the catalog and always runs.
|
|
# test_turn reads the owner's saves via SOTS_SAVES_DIR at run time and skips cleanly when it
|
|
# is unset -- no .sav ever enters this repo.
|
|
add_executable(app_test_catalog test_catalog.cpp)
|
|
target_link_libraries(app_test_catalog PRIVATE sots_app)
|
|
add_test(NAME app_catalog COMMAND app_test_catalog)
|
|
|
|
add_executable(app_test_turn test_turn.cpp)
|
|
target_link_libraries(app_test_turn PRIVATE sots_app)
|
|
add_test(NAME app_turn COMMAND app_test_turn)
|
|
|
|
foreach(_t app_test_catalog app_test_turn)
|
|
target_include_directories(${_t} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_options(${_t} PRIVATE -Wall -Wextra -Wpedantic)
|
|
endforeach()
|