Skip to content

Commit

Permalink
Stabilize CI by excluding debug messages
Browse files Browse the repository at this point in the history
The CI tests on Windows log the creation of a new WAL file in a
non-deterministic way. This message causes the regression tests to fail.
This PR removed these messages from the test output.
  • Loading branch information
jnidzwetzki committed Nov 9, 2023
1 parent ff88de9 commit 418f5c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,6 @@ ${PSQL} -U ${TEST_PGUSER} \
-e 's! Average Peak Memory: [0-9]\{1,\}kB!!' | \
grep -v 'DEBUG: rehashing catalog cache id' | \
grep -v 'DEBUG: compacted fsync request queue from' | \
grep -v 'DEBUG: creating and filling new WAL file' | \
grep -v 'DEBUG: done creating and filling new WAL file' | \
grep -v 'NOTICE: cancelling the background worker for job'
2 changes: 2 additions & 0 deletions test/runner_shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,6 @@ ${PSQL} -U ${TEST_PGUSER} \
-e 's! Average Peak Memory: [0-9]\{1,\}kB!!' | \
grep -v 'DEBUG: rehashing catalog cache id' | \
grep -v 'DEBUG: compacted fsync request queue from' | \
grep -v 'DEBUG: creating and filling new WAL file' | \
grep -v 'DEBUG: done creating and filling new WAL file' | \
grep -v 'NOTICE: cancelling the background worker for job'

0 comments on commit 418f5c5

Please sign in to comment.