ci / test (push) Has been cancelled
ci / fuzz-smoke (push) Has been cancelled
ci / windows-client (push) Has been cancelled
ci / package-release (linux-x86_64, ubuntu-latest) (push) Has been cancelled
ci / package-release (macos-aarch64, macos-14) (push) Has been cancelled
ci / package-release (macos-x86_64, macos-13) (push) Has been cancelled
ci / package-release (windows-x86_64, windows-latest) (push) Has been cancelled
ci / remote-bench (push) Has been cancelled
17 lines
515 B
Bash
Executable File
17 lines
515 B
Bash
Executable File
#!/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 \
|
|
unicode_output_survives_transport \
|
|
tui_graph_glyphs_survive_fast_repaints_without_snapshot_substitution \
|
|
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
|