diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-07-11 15:06:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-05-23 05:47:25 (GMT) |
commit | bb412d009a8496f9b34b0289aa568ee282734bfb (patch) | |
tree | 7f2c9896e39c61b78ef3350eac44e630d4ecb0c8 /Tests | |
parent | 5361270c6e9898b7ea10854ae101301772cd9b7d (diff) | |
download | CMake-bb412d009a8496f9b34b0289aa568ee282734bfb.zip CMake-bb412d009a8496f9b34b0289aa568ee282734bfb.tar.gz CMake-bb412d009a8496f9b34b0289aa568ee282734bfb.tar.bz2 |
GenerateExportHeader: Add newlines to separate the compiler output.
Make the error logs more readable.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Module/GenerateExportHeader/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Module/GenerateExportHeader/CMakeLists.txt b/Tests/Module/GenerateExportHeader/CMakeLists.txt index 4a5b1cb..454f37a 100644 --- a/Tests/Module/GenerateExportHeader/CMakeLists.txt +++ b/Tests/Module/GenerateExportHeader/CMakeLists.txt @@ -23,13 +23,13 @@ set( CMAKE_INCLUDE_CURRENT_DIR ON ) macro(TEST_FAIL value msg) if (${value}) - message (SEND_ERROR "Test fail:" ${msg} ${Out} ) + message (SEND_ERROR "Test fail:" "${msg}\n" ${Out} ) endif () endmacro() macro(TEST_PASS value msg) if (NOT ${value}) - message (SEND_ERROR "Test fail:" ${msg} ${Out} ) + message (SEND_ERROR "Test fail:" "${msg}\n" ${Out} ) endif () endmacro() |