mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-25 20:33:13 +00:00
Update with notes for 1203
This commit is contained in:
parent
cc023c06a4
commit
cac9b2f668
Binary file not shown.
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user