summaryrefslogtreecommitdiffstats
path: root/Tests/Complex
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-01-17 15:28:41 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-01-17 15:28:41 (GMT)
commit68d9a5d404691fc309bb813127e983b4336a3923 (patch)
treea1d62ce1050336dc204a8948a4fd33fafe743a7e /Tests/Complex
parent0510292b9e4d1c7fc2a25710974fda166db0742b (diff)
downloadCMake-68d9a5d404691fc309bb813127e983b4336a3923.zip
CMake-68d9a5d404691fc309bb813127e983b4336a3923.tar.gz
CMake-68d9a5d404691fc309bb813127e983b4336a3923.tar.bz2
remove trailing slash from findpath command
Diffstat (limited to 'Tests/Complex')
-rw-r--r--Tests/Complex/Executable/complex.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/Tests/Complex/Executable/complex.cxx b/Tests/Complex/Executable/complex.cxx
index 49b439f..2679722 100644
--- a/Tests/Complex/Executable/complex.cxx
+++ b/Tests/Complex/Executable/complex.cxx
@@ -42,9 +42,9 @@ void ForceStringUse()
// ======================================================================
-void cmFailed(const char* Message, const char* m2= "")
+void cmFailed(const char* Message, const char* m2= "", const char* m3 = "")
{
- std::cout << "FAILED: " << Message << m2 << "\n";
+ std::cout << "FAILED: " << Message << m2 << m3 << "\n";
cm_failed++;
}
@@ -774,10 +774,11 @@ int main()
#ifndef REGISTRY_TEST_PATH
cmFailed("the CONFIGURE_FILE command is broken, REGISTRY_TEST_PATH is not defined.");
#else
+ std::cout << "REGISTRY_TEST_PATH == " << REGISTRY_TEST_PATH << "\n";
if(stricmp(REGISTRY_TEST_PATH, BINARY_DIR "/registry_dir") != 0)
{
cmFailed("the 'read registry value' function or CONFIGURE_FILE command is broken. REGISTRY_TEST_PATH == ",
- REGISTRY_TEST_PATH);
+ REGISTRY_TEST_PATH, " is not " BINARY_DIR "/registry_dir");
}
else
{