commit 0c291ab3b61f2cd4c520a2b5c18724fc58276d2b
Author: Jan Klemkow <[email protected]>
AuthorDate: Thu Apr 23 23:04:26 2020 +0200
Commit: Jan Klemkow <[email protected]>
CommitDate: Thu Apr 23 23:09:18 2020 +0200
add script for scroll up testing
diff --git a/ptty.c b/ptty.c
index ca3eb85..7f6df51 100644
--- a/ptty.c
+++ b/ptty.c
@@ -130,7 +130,7 @@ main(int argc, char *argv[])
/* handle cursor position request */
if (strcmp("\033[6n", buf) == 0) {
- dprintf(mfd, "\033[%d;%dR", 1, 1);
+ dprintf(mfd, "\033[1;25R", 1, 1);
break;
}
diff --git a/up.sh b/up.sh
new file mode 100755
index 0000000..329476e
--- /dev/null
+++ b/up.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -eu
+
+jot 50 > tmp.log
+
+(sleep 1; printf "\033[5;2~"; sleep 1; ) \
+ | ktrace -i ./ptty ./scroll ksh -c "tail -fn 50 tmp.log" > out.log