diff options
author | David Cole <david.cole@kitware.com> | 2012-01-09 19:09:11 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-01-09 19:09:11 (GMT) |
commit | be358c68c351ff6913fa11e2af96b7f6741cde1a (patch) | |
tree | 7b706c4b6b12d8382e84e8e611980027837138b5 /Tests/Complex/Executable/A.cxx | |
parent | 4fa5a7c845305cc23e184f1cc644af27475bcf04 (diff) | |
parent | 53d31c2426835d372f3286d134c90b5f6cc79441 (diff) | |
download | CMake-be358c68c351ff6913fa11e2af96b7f6741cde1a.zip CMake-be358c68c351ff6913fa11e2af96b7f6741cde1a.tar.gz CMake-be358c68c351ff6913fa11e2af96b7f6741cde1a.tar.bz2 |
Merge topic 'test-Complex-cleanup'
53d31c2 complex: Remove unused option to test CMakeLib
c1789e6 complex: Remove test dependence on cmSystemTools
569cee1 complex: Move cmSystemTools::UpperCase test to CMakeLibTests
49d6dd6 complex: Simplify test for single-character exe name
76ac88b complex: Move GeneratedFileStream test to CMakeLibTests
137e597 complex: Remove dynamic loader tests
6337920 complex: Sync Tests/ComplexOneConfig with Tests/Complex
6a75821 complex: Remove ancient unused ComplexRelativePaths test
Diffstat (limited to 'Tests/Complex/Executable/A.cxx')
-rw-r--r-- | Tests/Complex/Executable/A.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Tests/Complex/Executable/A.cxx b/Tests/Complex/Executable/A.cxx index 0cc995a..fb3eb08 100644 --- a/Tests/Complex/Executable/A.cxx +++ b/Tests/Complex/Executable/A.cxx @@ -1,7 +1,9 @@ // Include code from a header that should not be compiled separately. #include "A.hh" +#include <stdio.h> int main() { - return A(); + printf("#define A_VALUE %d\n", A()); + return 0; } |