Update with notes for 1203

This commit is contained in:
Patrick Kloepfer 2019-02-04 21:43:50 -05:00
parent cc023c06a4
commit cac9b2f668
2 changed files with 13 additions and 13 deletions

Binary file not shown.

View File

@ -12,7 +12,7 @@ READ -P "Press Return to start tests" Z
#Clear Screen Test
SET T = $T + 1
echo \f
echo \n\n
echo \n
read -P "Did the screen clear: " Z
IF [ $Z = "y" ]
SET Z = "Y"
@ -30,9 +30,9 @@ ELSE
FI
#Backspace Test
SET T = $T + 1
echo \n\n
echo \n
echo "----> 1234\b\b5678 <----"
echo \n\n
echo \n
read -P "Is 125678 displayed between the arrows: " Z
IF [ $Z = "y" ]
SET Z = "Y"
@ -50,9 +50,9 @@ ELSE
FI
#Inverse Test
SET T = $T + 1
echo \n\n
echo \n
echo "----> abc \e[7mdef\e[0m ghi <----"
echo \n\n
echo \n
read -P "Is def above inversed: " Z
IF [ $Z = "y" ]
SET Z = "Y"
@ -70,9 +70,9 @@ ELSE
FI
#Newline Test
SET T = $T + 1
echo \n\n
echo \n
echo "----> abc\ndef <----"
echo \n\n
echo \n
read -P "Does abcdef appear split between two lines: " Z
IF [ $Z = "y" ]
SET Z = "Y"
@ -90,9 +90,9 @@ ELSE
FI
#Backslash Test
SET T = $T + 1
echo \n\n
echo \n
echo "----> \\ <----"
echo \n\n
echo \n
read -P "Is there a blackslash above: " Z
IF [ $Z = "y" ]
SET Z = "Y"
@ -110,9 +110,9 @@ ELSE
FI
#Percent Test
SET T = $T + 1
echo \n\n
echo \n
echo "----> \% <----"
echo \n\n
echo \n
read -P "Is there a percent symbol above: " Z
IF [ $Z = "y" ]
SET Z = "Y"
@ -130,13 +130,13 @@ ELSE
FI
#Newline Suppress Test
SET T = $T + 1
echo \n\n
echo \n
echo -N "----> "
echo -N "One"
echo -N "Two"
echo -N "Three"
echo " <----"
echo \n\n
echo \n
read -P "Do you see OneTwoThree between arrows on only ONE line above: " Z
IF [ $Z = "y" ]
SET Z = "Y"