Skip to content

Commit

Permalink
Fix flaky compression_update_delete test
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jnidzwetzki committed Sep 18, 2023
1 parent 24e4972 commit f5992e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 2 additions & 1 deletion test/runner_shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit f5992e1

Please sign in to comment.