1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 15:04:36 +03:00
wezterm/ci/run-esctest.sh
Wez Furlong 6cbb3ba432 impl IRM insert mode and improve esctest conformance
I've had mixed results with esctest; the IRM and cursor save/restore
tests fail for me in terminal.app, iterm2 and xterm, and fail in the
same way on wezterm, so I'm not sure if I'm not running those tests
correctly.  However, they did encourage the discovery of some other
real issues in the wezterm emulation.
2019-03-22 20:41:50 -07:00

13 lines
273 B
Bash
Executable File

#!/bin/sh
set -x
export RUST_BACKTRACE=1
cargo run -- start --front-end null -- python -B ./ci/esctest/esctest/esctest.py \
--expected-terminal=xterm \
--xterm-checksum=334 \
--v=3 \
--timeout=0.1 \
--no-print-logs \
--logfile=esctest.log
#--stop-on-failure \