From 079debaa103979f56154f33ac5b6ea873e7b3d2a Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Tue, 23 Feb 2021 11:30:08 +0100 Subject: [PATCH] Do not remove stderr from pict output Removing stderr from the pict tool serves no purpose and drops valuable information, we might use when debugging failed pairwise CI job, such as: Input Error: A parameter names must be unique --- util/pairwise-testing.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/pairwise-testing.sh b/util/pairwise-testing.sh index 9205b5ec47..1638ebc060 100755 --- a/util/pairwise-testing.sh +++ b/util/pairwise-testing.sh @@ -17,7 +17,7 @@ grep -v -F "pairwise: skip" configure.ac | sed -n -E "s|.*# \[pairwise: (.*)\]|\ echo "${RANDOM}: ${SWITCH}" done > pairwise-model.txt -pict pairwise-model.txt 2>/dev/null | tr "\t" " " | sed "1d" > pairwise-commands.txt +pict pairwise-model.txt | tr "\t" " " | sed "1d" > pairwise-commands.txt while read -r -a configure_switches; do runid=${RANDOM}