Updated bash test script help

This commit is contained in:
John Wellbelove 2025-03-04 09:27:07 +00:00
parent c43d9eaea1
commit ceeb2e706e

View File

@ -54,14 +54,14 @@ PrintHeader()
PrintHelp()
{
echo "$HelpColour"
echo "-------------------------------------------------------------------------------------"
echo " Syntax : ./runtests.sh <C++ Standard> <Optimisation> <Threads> <Sanitizer> "
echo " C++ Standard : 11, 14, 17 or 20 "
echo " Optimisation : 0, 1, 2 or 3. Default = 0 "
echo " Threads : Number of threads to use. Default = 4 "
echo " Sanitizer : s enables sanitizer checks, n disables. Default disabled "
echo " Compiler select : gcc or clang. Default All compilers "
echo "-------------------------------------------------------------------------------------"
echo "--------------------------------------------------------------------------------------------"
echo " Syntax : ./runtests.sh <C++ Standard> <Optimisation> <Threads> <Sanitizer> <Compiler>"
echo " C++ Standard : 11, 14, 17 or 20 "
echo " Optimisation : 0, 1, 2 or 3. Default = 0 "
echo " Threads : Number of threads to use. Default = 4 "
echo " Sanitizer : s enables sanitizer checks, n disables. Default disabled "
echo " Compiler : gcc or clang. Default All compilers "
echo "--------------------------------------------------------------------------------------------"
echo "$NoColour"
}