From f5992e14ee958fcd7622d428ad8336842599e17e Mon Sep 17 00:00:00 2001 From: Jan Nidzwetzki Date: Sun, 17 Sep 2023 23:50:56 +0200 Subject: [PATCH] Fix flaky compression_update_delete test The compression_update_delete test sets the log level to DEBUG1. Especially on Windows, the additional log message 'DEBUG: compacted fsync request queue from XXX entries to XXX entries' causes the test to be flaky. This patch removes this log message from the test output. --- test/runner.sh | 3 ++- test/runner_shared.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/runner.sh b/test/runner.sh index 2f2330e4090..63f7d7870b7 100755 --- a/test/runner.sh +++ b/test/runner.sh @@ -139,4 +139,5 @@ ${PSQL} -U ${TEST_PGUSER} \ -e 's! Memory: [0-9]\{1,\}kB!!' \ -e 's! Memory Usage: [0-9]\{1,\}kB!!' \ -e 's! Average Peak Memory: [0-9]\{1,\}kB!!' | \ - grep -v 'DEBUG: rehashing catalog cache id' + grep -v 'DEBUG: rehashing catalog cache id' | \ + grep -v 'DEBUG: compacted fsync request queue from' diff --git a/test/runner_shared.sh b/test/runner_shared.sh index 4264a0b5bd3..90799f60829 100755 --- a/test/runner_shared.sh +++ b/test/runner_shared.sh @@ -87,4 +87,5 @@ ${PSQL} -U ${TEST_PGUSER} \ -e 's! Memory: [0-9]\{1,\}kB!!' \ -e 's! Memory Usage: [0-9]\{1,\}kB!!' \ -e 's! Average Peak Memory: [0-9]\{1,\}kB!!' | \ - grep -v 'DEBUG: rehashing catalog cache id' + grep -v 'DEBUG: rehashing catalog cache id' | \ + grep -v 'DEBUG: compacted fsync request queue from'