diff options
author | Michael Scott <michael.scott250@gmail.com> | 2015-11-01 16:05:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-11-30 20:00:08 (GMT) |
commit | aa427a4239eb691d4129ebc383ab7b0d61b5b94e (patch) | |
tree | 0380789a4768f8ea7276bc0f107ff3b11f127117 /Tests | |
parent | 2218962dbdc7f552a076978a0393433091aa35c4 (diff) | |
download | CMake-aa427a4239eb691d4129ebc383ab7b0d61b5b94e.zip CMake-aa427a4239eb691d4129ebc383ab7b0d61b5b94e.tar.gz CMake-aa427a4239eb691d4129ebc383ab7b0d61b5b94e.tar.bz2 |
Tests: Revise message in RunCMake.CommandLine -Wdev case
Use more prose-like capitalization.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/RunCMake/CommandLine/Wdev-stderr.txt | 2 | ||||
-rw-r--r-- | Tests/RunCMake/CommandLine/Wdev.cmake | 2 | ||||
-rw-r--r-- | Tests/RunCMake/CommandLine/Wno-dev.cmake | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/RunCMake/CommandLine/Wdev-stderr.txt b/Tests/RunCMake/CommandLine/Wdev-stderr.txt index 92c1d23..88cfb3a 100644 --- a/Tests/RunCMake/CommandLine/Wdev-stderr.txt +++ b/Tests/RunCMake/CommandLine/Wdev-stderr.txt @@ -1,5 +1,5 @@ ^CMake Warning \(dev\) at Wdev.cmake:1 \(message\): - Some Author Warning + 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. diff --git a/Tests/RunCMake/CommandLine/Wdev.cmake b/Tests/RunCMake/CommandLine/Wdev.cmake index e5026ef..756f31e 100644 --- a/Tests/RunCMake/CommandLine/Wdev.cmake +++ b/Tests/RunCMake/CommandLine/Wdev.cmake @@ -1,4 +1,4 @@ -message(AUTHOR_WARNING "Some Author Warning") +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 diff --git a/Tests/RunCMake/CommandLine/Wno-dev.cmake b/Tests/RunCMake/CommandLine/Wno-dev.cmake index d81b858..802b435 100644 --- a/Tests/RunCMake/CommandLine/Wno-dev.cmake +++ b/Tests/RunCMake/CommandLine/Wno-dev.cmake @@ -1,4 +1,4 @@ -message(AUTHOR_WARNING "Some Author Warning") +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 |