diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-28 14:09:50 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-28 14:09:50 (GMT) |
commit | 14ba8b5df9728abd26fc6ce008b4e4a1ad3ceb96 (patch) | |
tree | 7406a24054a7efcdd9b99296ca92124ea7d3dc0f /Tests/ComplexOneConfig/Executable/complex.cxx | |
parent | 996ac24181b8de07dce0eb5c1e200ffed9a44862 (diff) | |
download | CMake-14ba8b5df9728abd26fc6ce008b4e4a1ad3ceb96.zip CMake-14ba8b5df9728abd26fc6ce008b4e4a1ad3ceb96.tar.gz CMake-14ba8b5df9728abd26fc6ce008b4e4a1ad3ceb96.tar.bz2 |
ENH: add a test for EQUAL in if
Diffstat (limited to 'Tests/ComplexOneConfig/Executable/complex.cxx')
-rw-r--r-- | Tests/ComplexOneConfig/Executable/complex.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/ComplexOneConfig/Executable/complex.cxx b/Tests/ComplexOneConfig/Executable/complex.cxx index 5cbe51c..2d4bd51 100644 --- a/Tests/ComplexOneConfig/Executable/complex.cxx +++ b/Tests/ComplexOneConfig/Executable/complex.cxx @@ -425,6 +425,18 @@ int main() cmPassed("SHOULD_NOT_BE_DEFINED_GREATER is not defined."); #endif +#ifdef SHOULD_NOT_BE_DEFINED_EQUAL + cmFailed("IF or SET is broken, SHOULD_NOT_BE_DEFINED_EQUAL is defined."); +#else + cmPassed("SHOULD_NOT_BE_DEFINED_EQUAL is not defined."); +#endif + +#ifndef SHOULD_BE_DEFINED_EQUAL + cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_EQUAL is not defined.\n"); +#else + cmPassed("SHOULD_BE_DEFINED_EQUAL is defined."); +#endif + #ifndef SHOULD_BE_DEFINED_GREATER cmFailed("IF or SET is broken, SHOULD_BE_DEFINED_GREATER is not defined.\n"); #else |