Updated sheet issues found in 1190, updated/closed old issues. Updated memory chart and the Command Page is now updated with Notes on Help status. TESTS/ENVTEST has been updated to test 80 and 100 char strings, you will have to paste into your BUILD.po if you want it.

This commit is contained in:
Patrick Kloepfer 2019-01-27 22:53:27 -05:00
parent 3344f59582
commit 37b8fc6dce
3 changed files with 11 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -6,7 +6,7 @@ AUTO 4,1
ECHO "\n\nThis is the ENV Test"
ECHO "\n This will stress the ENV space and string handling"
ECHO "\n\nEnter the size of the base string to use.
ECHO "Acceptable values are 20, 40 and 60\n"
ECHO "Acceptable values are 20, 40, 60, 80 and 100\n"
read -P "String size: " Z
IF [ $Z = "20" ]
SET A = "A1B2C3D4E5F6G7H8I9J0"
@ -17,8 +17,16 @@ ELSE
IF [ $Z = "60" ]
SET A = "A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0"
ELSE
ECHO "\n\nYou did not enter a valid size"
EXIT
IF [ $Z = "80" ]
SET A = "A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0"
ELSE
IF [ $Z = "100" ]
SET A = "A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0A1B2C3D4E5F6G7H8I9J0"
ELSE
ECHO "\n\nYou did not enter a valid size"
EXIT
FI
FI
FI
FI
FI