From a89d6d646c2c9894e9a1664e89b20c4c2dcbdc3d Mon Sep 17 00:00:00 2001 From: Justin Stephenson Date: Tue, 18 Jul 2023 13:09:17 -0400 Subject: [PATCH] Tests: Allow invalid non-UTF8 journal messages The following error is generated on fedora rawhide: cockpit-ws[12427]: invalid non-UTF8 @data passed as text to web_socket_connection_send() --- test/check-application | 1 + 1 file changed, 1 insertion(+) diff --git a/test/check-application b/test/check-application index 7b334d7..ed6e75e 100755 --- a/test/check-application +++ b/test/check-application @@ -20,6 +20,7 @@ class TestApplication(testlib.MachineCase): m = self.machine b.wait_visible(wait) self.allow_journal_messages('.*type=1400.*avc: denied .* comm="systemctl".*') + self.allow_journal_messages('.*invalid non-UTF8.*web_socket_connection_send.*') return b, m def _sel_rec(self, recording):