diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-03 14:42:05 -0400 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-03 14:42:05 -0400 |
commit | 26765e815f291cc7995fc1e5ab748633384503b6 (patch) | |
tree | 4956fcdc0423833e8dce8be7951365597a6d90d1 /Tests/CommandLineTest/CMakeLists.txt | |
parent | 99fa3376162a682f46feb6aa4c8524435fb357a4 (diff) | |
download | cmake-26765e815f291cc7995fc1e5ab748633384503b6.tar.gz |
ENH: Test setting of environment variables
Diffstat (limited to 'Tests/CommandLineTest/CMakeLists.txt')
-rw-r--r-- | Tests/CommandLineTest/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Tests/CommandLineTest/CMakeLists.txt b/Tests/CommandLineTest/CMakeLists.txt index 51a80cf41d..d24ea948cc 100644 --- a/Tests/CommandLineTest/CMakeLists.txt +++ b/Tests/CommandLineTest/CMakeLists.txt @@ -72,4 +72,10 @@ ELSE(THIS_SHOULD_BE_SET) MESSAGE("***************************") MESSAGE(FATAL_ERROR "PreLoad.cmake does not work.") ENDIF(THIS_SHOULD_BE_SET) - + +SET(ENV{TEST_ENVIRONMENT_VARIABLE} "Environment variable set") +IF("$ENV{TEST_ENVIRONMENT_VARIABLE}" STREQUAL "Environment variable set") + MESSAGE(STATUS "Environment variable set to: $ENV{TEST_ENVIRONMENT_VARIABLE}") +ELSE("$ENV{TEST_ENVIRONMENT_VARIABLE}" STREQUAL "Environment variable set") + MESSAGE(SEND_ERROR "Environment variable setting is broken") +ENDIF("$ENV{TEST_ENVIRONMENT_VARIABLE}" STREQUAL "Environment variable set") |