From b7ad30b0676f44126c1458a11a2b1b63650a5008 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Fri, 29 Dec 2023 15:27:16 -0600 Subject: [PATCH 1/2] website(ich): fix test script v1 The V-1 Test script was missing a printf statement. Add the missing statement to make the expected output correct. Signed-off-by: Tim Culverhouse --- website/app/vt/ich/page.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/website/app/vt/ich/page.mdx b/website/app/vt/ich/page.mdx index 5586757d6..359035e8e 100644 --- a/website/app/vt/ich/page.mdx +++ b/website/app/vt/ich/page.mdx @@ -32,6 +32,7 @@ margin, but either behavior is acceptable. printf "ABC" printf "\033[1G" printf "\033[2@" +printf "X" ``` ``` From 165bbf4e5640159246ead8c8f44063214cad12cf Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Fri, 29 Dec 2023 15:44:29 -0600 Subject: [PATCH 2/2] website(il): fix test script The IL V-3 test script has the cursor in the wrong position. Confirmed with xterm. The cursor should end up in the first column. --- website/app/vt/il/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/app/vt/il/page.mdx b/website/app/vt/il/page.mdx index dc19e3297..54a4b77a1 100644 --- a/website/app/vt/il/page.mdx +++ b/website/app/vt/il/page.mdx @@ -92,7 +92,7 @@ printf "\033[L" ``` |ABC_____| -|_c______| +|c_______| |DEF_____| |123_____| ```