]> granicus.if.org Git - curl/commitdiff
tests: Fix format specifiers
authorRikard Falkeborn <rikard.falkeborn@gmail.com>
Sun, 6 May 2018 19:20:32 +0000 (21:20 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 14 May 2018 07:42:27 +0000 (09:42 +0200)
tests/libtest/lib1509.c
tests/libtest/lib1535.c
tests/libtest/lib1536.c
tests/libtest/lib552.c
tests/libtest/testtrace.c
tests/server/fake_ntlm.c
tests/unit/unit1309.c
tests/unit/unit1395.c

index ccb668304efbf0fc5460add554720244b96a34d4..63bc589b1bdeac30de2c07ac8b3ec65a35d0e133 100644 (file)
@@ -69,7 +69,7 @@ int test(char *URL)
     goto test_cleanup;
   }
 
-  printf("header length is ........: %lu\n", headerSize);
+  printf("header length is ........: %ld\n", headerSize);
   printf("header length should be..: %lu\n", realHeaderSize);
 
 test_cleanup:
index 32519f206d8fc4b7b52f6680550c0cffc1f7e11c..6ff03467dbfb69bb1177b02418561570b7c8aff7 100644 (file)
@@ -71,7 +71,7 @@ int test(char *URL)
   }
   if(protocol != CURLPROTO_HTTP) {
     fprintf(stderr, "%s:%d protocol of http resource is incorrect; "
-            "expected %ld but is %ld\n",
+            "expected %d but is %ld\n",
             __FILE__, __LINE__, CURLPROTO_HTTP, protocol);
     res = CURLE_HTTP_RETURNED_ERROR;
     goto test_cleanup;
index 7f5b6149957343b57861f7c4cc453ba980345879..0c04bbf8efaa7f0625be8e199c8f437503dd6579 100644 (file)
@@ -72,7 +72,7 @@ int test(char *URL)
   if(memcmp(scheme, "HTTP", 5) != 0) {
     fprintf(stderr, "%s:%d scheme of http resource is incorrect; "
             "expected 'HTTP' but is %s\n",
-            __FILE__, __LINE__, CURLPROTO_HTTP,
+            __FILE__, __LINE__,
             (scheme == NULL ? "NULL" : "invalid"));
     res = CURLE_HTTP_RETURNED_ERROR;
     goto test_cleanup;
index 5082eb0445d14f97abcb1cba04998095b9123438..83797f3c2dfadc615a16435d85fcb6356eb3b85a 100644 (file)
@@ -46,11 +46,11 @@ void dump(const char *text,
     /* without the hex output, we can fit more on screen */
     width = 0x40;
 
-  fprintf(stream, "%s, %d bytes (0x%x)\n", text, (int)size, (int)size);
+  fprintf(stream, "%s, %zu bytes (0x%zx)\n", text, size, size);
 
   for(i = 0; i<size; i += width) {
 
-    fprintf(stream, "%04x: ", (int)i);
+    fprintf(stream, "%04zx: ", i);
 
     if(!nohex) {
       /* hex not disabled, show it */
index 5c68b3b1b8b72a5ec756074e242dd19f77442038..63e022b33cf0e28c842050a8ac5b2c10975a9b09 100644 (file)
@@ -43,12 +43,12 @@ void libtest_debug_dump(const char *timebuf, const char *text, FILE *stream,
     /* without the hex output, we can fit more on screen */
     width = 0x40;
 
-  fprintf(stream, "%s%s, %d bytes (0x%x)\n", timebuf, text,
-          (int)size, (int)size);
+  fprintf(stream, "%s%s, %zu bytes (0x%zx)\n", timebuf, text,
+          size, size);
 
   for(i = 0; i < size; i += width) {
 
-    fprintf(stream, "%04x: ", (int)i);
+    fprintf(stream, "%04zx: ", i);
 
     if(!nohex) {
       /* hex not disabled, show it */
index ca2b438b6031dd024cf792e1e994637ec9eea911..ec127a8af810f78bf42cc8002f1bc983163dcbd4 100644 (file)
@@ -37,7 +37,7 @@
 /* include memdebug.h last */
 #include "memdebug.h"
 
-#define LOGFILE "log/fake_ntlm%d.log"
+#define LOGFILE "log/fake_ntlm%ld.log"
 
 const char *serverlogfile;
 
index 7d3c00017f597ddd5a7dd03ed150c76e2854152c..9d885389d3a623f676a01298f90b5ee92e95de7a 100644 (file)
@@ -97,7 +97,7 @@ UNITTEST_START
     int rem = (i + 7)%NUM_NODES;
     printf("Tree look:\n");
     splayprint(root, 0, 1);
-    printf("remove pointer %d, payload %zd\n", rem,
+    printf("remove pointer %d, payload %zu\n", rem,
            *(size_t *)nodes[rem].payload);
     rc = Curl_splayremovebyaddr(root, &nodes[rem], &root);
     if(rc) {
@@ -130,7 +130,7 @@ UNITTEST_START
     tv_now.tv_usec = i;
     root = Curl_splaygetbest(tv_now, root, &removed);
     while(removed != NULL) {
-      printf("removed payload %zd[%zd]\n",
+      printf("removed payload %zu[%zu]\n",
              (*(size_t *)removed->payload) / 10,
              (*(size_t *)removed->payload) % 10);
       root = Curl_splaygetbest(tv_now, root, &removed);
index 527f281421d742e4c6870c6b4ef3852e1a464e3b..78fdfa021228d0f03ab16e345f4413e177dc6d26 100644 (file)
@@ -79,13 +79,13 @@ UNITTEST_START
     abort_unless(out != NULL, "returned NULL!");
 
     if(strcmp(out, pairs[i].output)) {
-      fprintf(stderr, "Test %d: '%s' gave '%s' instead of '%s'\n",
+      fprintf(stderr, "Test %u: '%s' gave '%s' instead of '%s'\n",
               i, pairs[i].input, out, pairs[i].output);
       fail("Test case output mismatched");
       fails++;
     }
     else
-      fprintf(stderr, "Test %d: OK\n", i);
+      fprintf(stderr, "Test %u: OK\n", i);
     free(out);
   }