diff --git a/tools/SmokeTesting/run_tests.ps1 b/tools/SmokeTesting/run_tests.ps1 index 187596320e..a2b083e885 100644 --- a/tools/SmokeTesting/run_tests.ps1 +++ b/tools/SmokeTesting/run_tests.ps1 @@ -35,6 +35,8 @@ if ($error_client.Count -gt 0) { Get-Content ./install/debug/asst_$client.log | ForEach-Object { if ($_ -match $pattern) { Write-Host $_ -ForegroundColor DarkRed + } elseif ($_ -match "[INF]") { + Write-Host $_ -ForegroundColor Cyan } else { Write-Host $_ } diff --git a/tools/SmokeTesting/run_tests.sh b/tools/SmokeTesting/run_tests.sh index 0823aa5f33..dd14d64719 100755 --- a/tools/SmokeTesting/run_tests.sh +++ b/tools/SmokeTesting/run_tests.sh @@ -43,6 +43,9 @@ if [ -n "$error_clients" ]; then *"[ERR]"*) printf "\033[31m%s\033[0m\n" "$line" ;; + *"[INF]"*) + printf "\033[36m%s\033[0m\n" "$line" + ;; *) echo "$line" ;; diff --git a/tools/SmokeTesting/run_tests.zsh b/tools/SmokeTesting/run_tests.zsh index 2b90016d33..531a03838e 100755 --- a/tools/SmokeTesting/run_tests.zsh +++ b/tools/SmokeTesting/run_tests.zsh @@ -36,6 +36,8 @@ if [[ ${#error_clients} -gt 0 ]]; then while IFS= read -r line; do if [[ "$line" == *"[ERR]"* ]]; then print -P "%F{red}${line}%f" + elif [[ "$line" == *"[INF]"* ]]; then + print -P "%F{cyan}${line}%f" else echo "$line" fi