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
{
70db336f125d52ef9586416017'>Update copyright headers (#2184)Larry Knox2022-11-011-1/+0 * Update develop branch version to 1.13.4-1 (#2189)Larry Knox2022-10-261-2/+2 * Update version to 1.13.3-1 after creating hdf5_1_13_2 branch for 1.13.2 (#2004)Larry Knox2022-08-121-2/+2 * Develop clang 13 format (#1933)Allen Byrne2022-07-261-5/+5 * Fixes a typo in H5.c (#1639)Dana Robinson2022-04-141-1/+1 * Merge initial version of selection I/O feature into develop (#1367)Neil Fortner2022-03-261-1/+12 * Update version to 1.13.2-1 after 1.13.1 release; add new Makefile.in files t...Larry Knox2022-03-011-2/+2 * Fix release check version logic (#1438)Allen Byrne2022-02-241-10/+9 * Call FUNC_ENTER immediately in H5_init_library (#1287)jhendersonHDF2021-12-131-2/+2 * Make sure plugin interface is initialized before property list interface phas...jhendersonHDF2021-11-231-0/+2 * Simplify function enter macros for performance benefits (#1024)David Young2021-11-081-133/+172 * VFD plugins (#602)jhendersonHDF2021-09-291-1/+3 * Unsigned comparison to 0 warning avoidance (#869)Larry Knox2021-08-021-3/+4 * Added int variable for comparison with H5_VERS_RELEASE in H5.c to avoid (#866)Larry Knox2021-07-301-1/+3 * Remove version-check for relnum in H5check. (#812)Allen Byrne2021-07-271-90/+151 * Fix several warnings (#747)jhendersonHDF2021-06-161-6/+3 * Removes alternative function enter/leave macro scheme (#678)Dana Robinson2021-05-291-4/+0 * Fixed all clang-tidy bugprone-suspicious-string-compare warnings (#451)Sean McBride2021-03-101-1/+1 * Fixed clang-tidy readability-redundant-control-flow warnings (#428)Sean McBride2021-03-051-3/+0 * Update license url (#332)Larry Knox2021-02-171-1/+1 * develop revert source to clang-format version 11 (#293)Allen Byrne2021-01-291-2/+2 * Bring async branch to develop (#166)Quincey Koziol2020-12-14