diff --git a/.A2osX Issue List.xlsx b/.A2osX Issue List.xlsx index d6e9dad2..e362cd69 100644 Binary files a/.A2osX Issue List.xlsx and b/.A2osX Issue List.xlsx differ diff --git a/TESTS/ECHOTEST b/TESTS/ECHOTEST index 4348c76f..6efe4255 100644 --- a/TESTS/ECHOTEST +++ b/TESTS/ECHOTEST @@ -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"