diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-04-02 09:48:26 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-04-02 09:53:02 +0100 |
commit | f03776c262ff68f4f5c3fefefd559256d534179d (patch) | |
tree | a6510394953008d2a7065e90212cc0d35a0d904e /regress/cursor-test2.sh | |
parent | 79c3fd4f39ef3c6a8816ff966942753a4dd6434d (diff) | |
download | rtmux-f03776c262ff68f4f5c3fefefd559256d534179d.tar.gz rtmux-f03776c262ff68f4f5c3fefefd559256d534179d.tar.bz2 rtmux-f03776c262ff68f4f5c3fefefd559256d534179d.zip |
Don't use a config file in tests.
Diffstat (limited to 'regress/cursor-test2.sh')
-rw-r--r-- | regress/cursor-test2.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/cursor-test2.sh b/regress/cursor-test2.sh index c8640632..9791f567 100644 --- a/regress/cursor-test2.sh +++ b/regress/cursor-test2.sh @@ -10,7 +10,8 @@ $TMUX kill-server 2>/dev/null TMP=$(mktemp) trap "rm -f $TMP" 0 1 15 -$TMUX new -d -x10 -y10 "cat cursor-test.txt; printf '\e[8;10H'; cat" || exit 1 +$TMUX -f/dev/null new -d -x10 -y10 \ + "cat cursor-test.txt; printf '\e[8;10H'; cat" || exit 1 $TMUX set -g window-size manual || exit 1 $TMUX display -pF '#{cursor_x} #{cursor_y} #{cursor_character}' >>$TMP |