瀏覽代碼

Tests: Revise message in RunCMake.CommandLine -Wdev case

Use more prose-like capitalization.
Michael Scott 10 年之前
父節點
當前提交
aa427a4239

+ 1 - 1
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.

+ 1 - 1
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

+ 1 - 1
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