Update nodeloc_vps_autotest_yabs.sh

This commit is contained in:
Jensfrank 2024-06-28 23:28:27 +08:00 committed by GitHub
parent 0e1beb9559
commit 1ad2eb4a18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,7 +110,10 @@ run_and_capture() {
# 去除Yabs板块ANSI转义码并过滤特定输出
yabs_process_output() {
local input="$1"
echo "$input" | sed -E 's/\x1b\[[0-9;]*[a-zA-Z]//g' | grep -v -E 'Preparing|Generating|Running|Performing'
# 去除ANSI转义码
local processed_input=$(echo "$input" | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g")
# 过滤不需要的行
echo "$processed_input" | grep -v -E 'Preparing|Generating|Running [^result]|Performing'
}
# 运行所有测试