From 67b6b53603161ac0404451673b3c9b96d0ff2af1 Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Wed, 27 Jan 2021 17:13:05 +0100 Subject: [PATCH] Per-patch: Allow parsing CPS MRR results The previous grep was too strict about test message. Change-Id: Ib0c120a32d205b905f257e5b3c948a309ed8abb2 Signed-off-by: Vratko Polak --- resources/libraries/bash/function/per_patch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/libraries/bash/function/per_patch.sh b/resources/libraries/bash/function/per_patch.sh index 3ded218e89..2149d79b52 100644 --- a/resources/libraries/bash/function/per_patch.sh +++ b/resources/libraries/bash/function/per_patch.sh @@ -176,7 +176,7 @@ function parse_bmrr_results () { # TODO: Do we need to check echo exit code explicitly? echo "Parsing ${in_file} putting results into ${out_file}" echo "TODO: Re-use parts of PAL when they support subsample test parsing." - pattern='Maximum Receive Rate trial results in packets' + pattern='Maximum Receive Rate trial results in .*' pattern+=' per second: .*\]' grep -o "${pattern}" "${in_file}" | grep -o '\[.*\]' > "${out_file}" || { die "Some parsing grep command has failed." -- 2.16.6