A2osX/TESTS/TESTMENU.txt

60 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
PREFIX
AUTO 4,1
#!/BIN/SH
#
# This menu will display a menu of test options
# to run, both interactive and batch.
#
ECHO "\f A2osX Test System Menu\n"
ECHO " 1) Core Tests"
ECHO " 2) Display Tests (Echo and Read)"
ECHO " 3) Pathing Tests (CD PWD POPD PUSHD)"
ECHO " 4) Internal Command Tests"
ECHO " 5) External Command Tests"
ECHO " 6) SHTEST"
ECHO " 7) Copy Test Files\n"
ECHO " 8) Display Logs\n"
ECHO " 9) Build Test Suite with Logging"
ECHO "\n"
READ -P "Enter Choice: " Z
IF [ $Z = "1" ]
CORETEST
ELSE
IF [ $Z = "2" ]
DISPLAYTEST
ELSE
IF [ $Z = "3" ]
PATHTEST
ELSE
IF [ $Z = "4" ]
INTERNALTEST
ELSE
IF [ $Z = "5" ]
EXTERNALTEST
ELSE
IF [ $Z = "6" ]
SHTEST
ELSE
IF [ $Z = "7" ]
COPYTESTS
ELSE
IF [ $Z = "8" ]
LOG
ELSE
IF [ $Z = "9" ]
BUILDTEST
ELSE
ECHO "\n\nInvalid Selection\n"
FI
FI
FI
FI
FI
FI
FI
FI
FI
MAN
TEXT /MAKE/USR/SHARE/TESTS/TESTMENU