summaryrefslogtreecommitdiff
path: root/Tests/Environment/main.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Environment/main.cxx')
-rw-r--r--Tests/Environment/main.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/Environment/main.cxx b/Tests/Environment/main.cxx
new file mode 100644
index 000000000..2e1bf4c28
--- /dev/null
+++ b/Tests/Environment/main.cxx
@@ -0,0 +1,16 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char *argv[])
+{
+ char* var = getenv("CMAKE_ENVIRONMENT_TEST_VAR");
+ if (!var)
+ {
+ var = "(null)";
+ }
+
+ fprintf(stdout, "Environment:\n");
+ fprintf(stdout, " CMAKE_ENVIRONMENT_TEST_VAR='%s'\n", var);
+
+ return 0;
+}