diff options
author | Brad King <brad.king@kitware.com> | 2006-09-15 18:31:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-09-15 18:31:24 (GMT) |
commit | 07ec25e383920899c6c506be8f706da2d6db26eb (patch) | |
tree | 72f2c560411fad9ce09d8885ba2b4fa150eb32a4 /Tests/ComplexOneConfig/Executable/complex.cxx | |
parent | 1d0502927c32cb3a14c101da16d7ab97901dc2a2 (diff) | |
download | CMake-07ec25e383920899c6c506be8f706da2d6db26eb.zip CMake-07ec25e383920899c6c506be8f706da2d6db26eb.tar.gz CMake-07ec25e383920899c6c506be8f706da2d6db26eb.tar.bz2 |
ENH: Added test for linking to a static library that is next to a shared library. See bug#1644 for related changes.
Diffstat (limited to 'Tests/ComplexOneConfig/Executable/complex.cxx')
-rw-r--r-- | Tests/ComplexOneConfig/Executable/complex.cxx | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/Tests/ComplexOneConfig/Executable/complex.cxx b/Tests/ComplexOneConfig/Executable/complex.cxx index 816414c..c4fc73b 100644 --- a/Tests/ComplexOneConfig/Executable/complex.cxx +++ b/Tests/ComplexOneConfig/Executable/complex.cxx @@ -23,6 +23,12 @@ extern "C" { #include <string.h> #endif +#ifdef COMPLEX_TEST_LINK_STATIC +extern "C" +{ + int TestLinkGetType(); +} +#endif int cm_passed = 0; int cm_failed = 0; @@ -1270,7 +1276,18 @@ int main() // Test the generated file stream. TestCMGeneratedFileSTream(); #endif - + +#ifdef COMPLEX_TEST_LINK_STATIC + if(TestLinkGetType()) + { + cmPassed("Link to static over shared worked."); + } + else + { + cmFailed("Link to static over shared failed."); + } +#endif + // ---------------------------------------------------------------------- // Summary |