diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-08-27 20:42:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-08-27 20:42:01 (GMT) |
commit | a35d911defc912e3d5f1cbbf292493cbcec6f238 (patch) | |
tree | e3a35f003cccbc58195d9fad66bf4e8ae1b5ccf9 /Tests/Complex/Executable/complex.cxx | |
parent | f9064ee91ad837645e04ac4d396c3f202d7a4a2d (diff) | |
download | CMake-a35d911defc912e3d5f1cbbf292493cbcec6f238.zip CMake-a35d911defc912e3d5f1cbbf292493cbcec6f238.tar.gz CMake-a35d911defc912e3d5f1cbbf292493cbcec6f238.tar.bz2 |
ENH: MinGW build now passes all the tests
Diffstat (limited to 'Tests/Complex/Executable/complex.cxx')
-rw-r--r-- | Tests/Complex/Executable/complex.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Tests/Complex/Executable/complex.cxx b/Tests/Complex/Executable/complex.cxx index 208e9fd..067bf66 100644 --- a/Tests/Complex/Executable/complex.cxx +++ b/Tests/Complex/Executable/complex.cxx @@ -115,7 +115,9 @@ int main() cmLibHandle handle = cmDynamicLoader::OpenLibrary(lib.c_str()); if(!handle) { - cmFailed("Can not open CMakeTestModule"); + std::string err = "Can not open CMakeTestModule:"; + err += lib; + cmFailed(lib.c_str()); } else { |