From f7845f85309f1edfb526d9f3420dfdf01f88d59c Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Mon, 4 Dec 2023 09:34:14 +0000 Subject: [PATCH] Updated help screen in CI script --- test/run-tests.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/test/run-tests.sh b/test/run-tests.sh index b8280df7b..5db34379f 100644 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -53,11 +53,13 @@ PrintHeader() PrintHelp() { echo "$HelpColour" - echo "----------------------------------------------------------------------------" - echo " Syntax : ./runtests.sh " - echo " C++ Standard : 11, 14, 17 or 20 " - echo " Optimisation : 0, 1, 2 or 3. Default = 0 " - echo "----------------------------------------------------------------------------" + echo "----------------------------------------------------------------------------------" + echo " Syntax : ./runtests.sh " + echo " C++ Standard : 11, 14, 17 or 20 " + echo " Threads : Number of threads to use. Default = 4 " + echo " Optimisation : 0, 1, 2 or 3. Default = 0 " + echo " Sanitizer : S enables sanitizer checks. Default disabled " + echo "----------------------------------------------------------------------------------" echo "$NoColour" }