Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Implement CTEST warning suppression.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Aug 18, 2014
1 parent 24be0d5 commit 0c37aff
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions CTestCustom.cmake
@@ -1,13 +1,17 @@

SET(CTEST_CUSTOM_ERROR_EXCEPTION
${CTEST_CUSTOM_ERROR_EXCEPTION}
"ERROR: *role \".*\" already exists"
"ERROR: *database \".*\" already exists"
"ERROR: *table \".*\" does not exist"
"NOTICE: *table \".*\" does not exist, skipping"
"NOTICE: .*will create implicit sequence"
"NOTICE: .*will create implicit index"
"ERROR: *role \".*\" already exists"
)

SET(CTEST_CUSTOM_WARNING_EXCEPTION
${CTEST_CUSTOM_WARNING_EXCEPTION}
"libtool: install: warning: relinking .*"
"libtool: link: warning: .* seems to be moved"
)

SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 100000)
Expand Down

0 comments on commit 0c37aff

Please sign in to comment.