feat: SIGINT graceful shutdown + stdio binary-identity pinning (WOR-1434, WOR-1448)#81
Merged
Conversation
…xit code (WOR-1434)
…r the module-size gate (WOR-1434)
…ly fires (WOR-1448)
…slow CI (WOR-1434)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two disjoint features.
WOR-1434 — runner SIGINT graceful shutdown
Ctrl-C during a run now drops the in-flight executor cleanly (server pool torn down via Drop), writes a well-formed partial report (one Inconclusive row per selected test with an "interrupted by SIGINT" note), and exits with a canonical interrupted code (130 = 128 + SIGINT). New cli_interrupt.rs integration test (unix); the engine-level test stays ignored since signal handling is a CLI concern.
WOR-1448 — pin stdio server binary identity (SEC-065)
New integrity-lane rule that fingerprints the resolved stdio command (resolved path + content hash + args; resolved endpoint/host for URL servers) into the baseline and fails on drift, mirroring SEC-014. Captured by
mcptest baseline. Old baselines without the fingerprint field still deserialize (serde default + skip_serializing_if).Relies on CI for the cross-platform build+test run (local test gate is blocked by a macOS Gatekeeper hang on this machine). WOR-1385 (model-compat live runner) is being finished separately.