#!/usr/bin/env sh set -eu repo_root="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)" cd "$repo_root" for test_name in \ live_output_forwards_terminal_control_sequences \ tui_control_sequences_survive_transport_verbatim \ large_tui_paint_is_delivered_in_mtu_safe_frames \ resume_snapshot_preserves_alternate_screen_mode do cargo test --test integration_smoke "$test_name" -- --nocapture done