Synced from monorepo Changes: - Report invalid MCP server config instead of failing startup - Keep completed terminal output when the gateway connection is lost - Show a duration-only detail view for single-task task output - Don't let a stale registry turn counter hide local sessions - Raise the file-descriptor soft limit on Linux and log effective limits at startup - Stop aborting when HTTP client construction fails - Make session thread and runtime spawn failures recoverable - Fix main-prompt paste parity in the question freeform input - Fire SessionEnd hooks on /exit and headless quit - Embed the deployment-config signing public key - Repaint paste-chip background on inline panel inputs - Security: prevent acceptEdits from auto-approving agent writes into the always-trusted global hook root - Fix stacked "Worked for" markers so parks render as status and turns close with exactly one marker - Parse hooks from config files - Add a remote kill-switch for managed-config signature verification - Security: fix workspace file-reference resolution bypassing workspace filesystem confinement Source-Revision: d02693a856a54f1030695b36b91d276e96b30b23
27 lines
1.2 KiB
Rust
27 lines
1.2 KiB
Rust
//! Session resume, persistence, storage recovery, background-task cleanup, and
|
|
//! parked/wake lifecycle PTY coverage.
|
|
//!
|
|
//! All cases are ignored for ordinary Cargo runs; Bazel opts in and caps this
|
|
//! process-heavy family at four concurrent libtest workers.
|
|
|
|
// Shared support intentionally serves all PTY family crates.
|
|
#[allow(dead_code, unused_imports)]
|
|
#[path = "pty_e2e/common.rs"]
|
|
mod common;
|
|
|
|
#[path = "pty_e2e/background_task_reaped_on_quit.rs"]
|
|
mod background_task_reaped_on_quit;
|
|
#[path = "pty_e2e/continue_resumes_session_with_history.rs"]
|
|
mod continue_resumes_session_with_history;
|
|
#[path = "pty_e2e/endline_park_is_markerless.rs"]
|
|
mod endline_park_is_markerless;
|
|
#[path = "pty_e2e/endline_wakeups_close_with_markers.rs"]
|
|
mod endline_wakeups_close_with_markers;
|
|
#[path = "pty_e2e/rename_title_shows_in_prompt_border.rs"]
|
|
mod rename_title_shows_in_prompt_border;
|
|
#[path = "pty_e2e/reparked_wait_stays_markerless.rs"]
|
|
mod reparked_wait_stays_markerless;
|
|
#[path = "pty_e2e/spinner_reappears_after_wait_resumes.rs"]
|
|
mod spinner_reappears_after_wait_resumes;
|
|
#[path = "pty_e2e/storage_upload_parks_on_401_and_drains_after_recovery.rs"]
|
|
mod storage_upload_parks_on_401_and_drains_after_recovery;
|