From 30a1adf9beeb827a008195738c3a7f40f3a549f9 Mon Sep 17 00:00:00 2001 From: Jason Boyer Date: Wed, 23 Feb 2022 07:05:23 -0500 Subject: [PATCH] Ignore the complaint about installing postgresql-14 This message comes up on stretch no matter what version you're installing, so it's ignored until the qa tester runs on bullseye or later. Signed-off-by: Jason Boyer --- qa/test_output_webifier.pl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/qa/test_output_webifier.pl b/qa/test_output_webifier.pl index 45f854ed5..980a428ac 100755 --- a/qa/test_output_webifier.pl +++ b/qa/test_output_webifier.pl @@ -122,6 +122,14 @@ sub consider_error_count_inc { return; } } + if ($subpage eq 'Installing Evergreen database pre-requisites') { + # This message is thrown on stretch regardless of the version being installed. + if ($line =~ /Please install the latest packages .postgresql-14/) { + print DEBUG "error skipped, $error_count\n"; + print STDOUT "error skipped, $error_count\n"; + return; + } + } $error_count++; print DEBUG "error counted, $error_count\n"; print STDOUT "error counted, $error_count\n"; -- 2.11.0