Tests: Add case for -Wdev and -Wno-dev with non-message() warnings (#15747)

This commit is contained in:
Michael Scott 2015-09-22 22:43:24 +01:00 committed by Brad King
parent 414cc18a9a
commit bc3e1e4b55
3 changed files with 16 additions and 0 deletions

View File

@ -2,4 +2,10 @@
Some Author Warning
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning \(dev\) at Wdev.cmake:6 \(include\):
include\(\) given empty file name \(ignored\).
Call Stack \(most recent call first\):
CMakeLists.txt:3 \(include\)
This warning is for project developers. Use -Wno-dev to suppress it.$

View File

@ -1 +1,6 @@
message(AUTHOR_WARNING "Some Author Warning")
# with -Wdev this will also cause an AUTHOR_WARNING message, checks that
# messages issued outside of the message command, by other CMake commands, also
# are affected by -Wdev
include("")

View File

@ -1 +1,6 @@
message(AUTHOR_WARNING "Some Author Warning")
# without -Wno-dev this will also cause an AUTHOR_WARNING message, checks that
# messages issued outside of the message command, by other CMake commands, also
# are affected by -Wno-dev
include("")