diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-17 17:59:23 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-17 17:59:23 (GMT) |
commit | 0f8603acc2f007e68a1c41a48919fd1acfc41c20 (patch) | |
tree | 95d6c7053b3770e71a6004ecb6b3fedbb74d9ece /Tests/ComplexOneConfig/Executable/complex.cxx | |
parent | 69488e5bd22a59cc7bf0f571f0c9aec9a1273c39 (diff) | |
download | CMake-0f8603acc2f007e68a1c41a48919fd1acfc41c20.zip CMake-0f8603acc2f007e68a1c41a48919fd1acfc41c20.tar.gz CMake-0f8603acc2f007e68a1c41a48919fd1acfc41c20.tar.bz2 |
ENH: allow multiple files with the same name in different sub dirs test
Diffstat (limited to 'Tests/ComplexOneConfig/Executable/complex.cxx')
-rw-r--r-- | Tests/ComplexOneConfig/Executable/complex.cxx | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Tests/ComplexOneConfig/Executable/complex.cxx b/Tests/ComplexOneConfig/Executable/complex.cxx index 1f4c21a..f126fe5 100644 --- a/Tests/ComplexOneConfig/Executable/complex.cxx +++ b/Tests/ComplexOneConfig/Executable/complex.cxx @@ -290,6 +290,11 @@ void ForceStringUse() extern "C" int TestCFlags(char* m); extern "C" int TestTargetCompileFlags(char* m); +// defined in Sub1/NameConflictTest.c +extern "C" int NameConflictTest1(); +// defined in Sub2/NameConflictTest.c +extern "C" int NameConflictTest2(); + // ====================================================================== int main() @@ -395,7 +400,14 @@ int main() cmFailed("cmSystemTools::UpperCase is working"); } #endif - + if(NameConflictTest1() == 0 && NameConflictTest2() == 0) + { + cmPassed("Sub dir with same named source works"); + } + else + { + cmFailed("Sub dir with same named source fails"); + } if(file1() != 1) { cmFailed("Call to file1 function from library failed."); |