summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/testDynamicLoader.cxx
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2006-03-10 20:38:35 (GMT)
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2006-03-10 20:38:35 (GMT)
commit7763163e4b25d71d7c7ada0a488af7015f9b526b (patch)
treefcba2fe17f4c76570f2e8c5e5ef9c37bae2b7f3c /Source/kwsys/testDynamicLoader.cxx
parentaaa780d6a14ad4175c27a390f569adda43da5a11 (diff)
downloadCMake-7763163e4b25d71d7c7ada0a488af7015f9b526b.zip
CMake-7763163e4b25d71d7c7ada0a488af7015f9b526b.tar.gz
CMake-7763163e4b25d71d7c7ada0a488af7015f9b526b.tar.bz2
BUG: Do the proper path
Diffstat (limited to 'Source/kwsys/testDynamicLoader.cxx')
-rw-r--r--Source/kwsys/testDynamicLoader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/testDynamicLoader.cxx b/Source/kwsys/testDynamicLoader.cxx
index 15fd742..ab67383 100644
--- a/Source/kwsys/testDynamicLoader.cxx
+++ b/Source/kwsys/testDynamicLoader.cxx
@@ -51,7 +51,7 @@ kwsys_stl::string GetLibName(const char* lname)
*/
int TestDynamicLoader(const char* libname, const char* symbol, int r1, int r2, int r3)
{
- //kwsys_ios::cerr << "Testing: " << libname << kwsys_ios::endl;
+ kwsys_ios::cerr << "Testing: " << libname << kwsys_ios::endl;
kwsys::LibHandle l = kwsys::DynamicLoader::OpenLibrary(libname);
// If result is incompatible with expectation just fails (xor):
if( (r1 && !l) || (!r1 && l) )