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