view src/libvterm/t/18state_termprops.test @ 19781:cadb4c1bee6e v8.2.0447

patch 8.2.0447: terminal scroll tests fails on some systems Commit: https://github.com/vim/vim/commit/bfcfd5784a2fe950d8e58d1d534bbbb4824524eb Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 25 21:27:22 2020 +0100 patch 8.2.0447: terminal scroll tests fails on some systems Problem: Terminal scroll tests fails on some systems. Solution: Remove the fixed 100msec wait for Win32. Add a loop to wait until scrolling has finished. (James McCoy, closes #5842)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Mar 2020 21:30:04 +0100
parents b8299e742f41
children 1d595fada804
line wrap: on
line source

INIT
WANTSTATE p

RESET
  settermprop 1 true
  settermprop 2 true
  settermprop 7 1

!Cursor visibility
PUSH "\e[?25h"
  settermprop 1 true
PUSH "\e[?25\$p"
  output "\e[?25;1\$y"
PUSH "\e[?25l"
  settermprop 1 false
PUSH "\e[?25\$p"
  output "\e[?25;2\$y"

!Cursor blink
PUSH "\e[?12h"
  settermprop 2 true
PUSH "\e[?12\$p"
  output "\e[?12;1\$y"
PUSH "\e[?12l"
  settermprop 2 false
PUSH "\e[?12\$p"
  output "\e[?12;2\$y"

!Cursor shape
PUSH "\e[3 q"
  settermprop 2 true
  settermprop 7 2

!Title
PUSH "\e]2;Here is my title\a"
  settermprop 4 "Here is my title"