]> gitweb.hamatoma.de Git - crepublib/commitdiff
tests clean under windows
authorkawi <winfriedkappeler@atron.de>
Wed, 7 Jan 2015 09:30:46 +0000 (10:30 +0100)
committerkawi <winfriedkappeler@atron.de>
Wed, 7 Jan 2015 09:30:46 +0000 (10:30 +0100)
base/ReCString.cpp
cunit/cuReCString.cpp
os/ReDirTools.cpp

index 9b5bee1aefb761c63ccac77acd611bb8642125f3..7160bca7be1227496c674d9ed64bc6dcb9f0650e 100644 (file)
@@ -53,7 +53,7 @@ void replaceSubstring(char* start, size_t bufferSize, size_t lengthReplaced,
  *                  < 0: region1 is alphabetically less than region2<br>
  *                  > 0: region1 is alphabetically greater than region2
  */
-int memicmp(const void* region1, const void* region2, int size)
+int _memicmp(const void* region1, const void* region2, int size)
 {
     unsigned char* ptr1 = (unsigned char*) region1;
     unsigned char* ptr2 = (unsigned char*) region2;
index 5a49336a4de1fe032f41753caad38c6fb7e15363..692b782a95f92eb8aa3fdbc93acbc4700f2299db 100644 (file)
@@ -33,17 +33,17 @@ private:
                checkEqu("xw.ab", buffer);
        }
     void testMemicmp(){
-               checkEqu(0, memicmp((void*) "abcd", (void*) "abcx", 3u));
-               checkEqu(0, memicmp("aBcd", "AbCx", 3));
+               checkEqu(0, _memicmp((void*) "abcd", (void*) "abcx", 3u));
+               checkEqu(0, _memicmp("aBcd", "AbCx", 3));
 
-        checkEqu(1, memicmp("bbcd", "abcx", 3));
-        checkEqu(-1, memicmp("abcd", "bbcx", 3));
+        checkEqu(1, _memicmp("bbcd", "abcx", 3));
+        checkEqu(-1, _memicmp("abcd", "bbcx", 3));
 
-        checkEqu(1, memicmp("Bbcd", "abcx", 3));
-        checkEqu(-1, memicmp("aBcd", "bbcx", 3));
+        checkEqu(1, _memicmp("Bbcd", "abcx", 3));
+        checkEqu(-1, _memicmp("aBcd", "bbcx", 3));
 
-        checkEqu(1, memicmp("bbcd", "abcx", 3));
-        checkEqu(-1, memicmp("ABcd", "bbcx", 3));
+        checkEqu(1, _memicmp("bbcd", "abcx", 3));
+        checkEqu(-1, _memicmp("ABcd", "bbcx", 3));
     }
 
 };
index c4be6efc403450bbe5c4881e0cb89e19e764a063..75e6afd326c62ac7afc0170972bd0503003bf3f8 100644 (file)
@@ -16,7 +16,7 @@ enum LOCATION_DIRTOOL {
        LC_COPY_FILE_5, // 50105
        LC_COPY_FILE_6, // 50106
 };
-const char* ReDirTools::m_version = "2015.01.05";
+const char* ReDirTools::m_version = "2015.01.06";
 
 static const char* s_helpSummary[] = {
     "dirtool or dt <command> <opts>",
@@ -27,7 +27,8 @@ static const char* s_helpSummary[] = {
     "help          shows info about the arguments/options",
     "list          shows the meta data of the selected files",
     "statistic     shows statistics about a direcctory tree",
-    "synchronize   adapts the content of a directory tree to another",
+    "synchronize   copies only modified or new files from",
+    "              from a source directory tre to a target",
     NULL
 };