Fix message command syntax

This commit is contained in:
Allen Byrne
2019-05-17 15:48:38 -05:00
parent ab3591b9ec
commit d628d1d8c8
10 changed files with 27 additions and 27 deletions

View File

@@ -17,7 +17,7 @@ if (NOT TEST_PROGRAM)
message (FATAL_ERROR "Require TEST_PROGRAM to be defined")
endif ()
if (NOT TEST_FOLDER)
message ( FATAL_ERROR "Require TEST_FOLDER to be defined")
message (FATAL_ERROR "Require TEST_FOLDER to be defined")
endif ()
if (NOT TEST_VFD)
message (FATAL_ERROR "Require TEST_VFD to be defined")
@@ -73,4 +73,4 @@ endif ()
message (STATUS "COMMAND Error: ${TEST_ERROR}")
# everything went fine...
message ("Passed: The ${TEST_PROGRAM} program used vfd ${TEST_VFD}")
message (STATUS "Passed: The ${TEST_PROGRAM} program used vfd ${TEST_VFD}")