Ignore the complaint about installing postgresql-14
authorJason Boyer <JBoyer@equinoxOLI.org>
Wed, 23 Feb 2022 12:05:23 +0000 (07:05 -0500)
committerJason Boyer <jboyer@equinoxOLI.org>
Wed, 23 Feb 2022 12:10:12 +0000 (07:10 -0500)
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 <JBoyer@equinoxOLI.org>
qa/test_output_webifier.pl

index 45f854e..980a428 100755 (executable)
@@ -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";