gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 163/205: test1541: ignore the curl_off_t variable t


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 163/205: test1541: ignore the curl_off_t variable type name comparison
Date: Thu, 20 Apr 2017 16:21:43 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.0
in repository gnurl.

commit 8761a40fd95a8016f6c1d83516b86a1110ae118b
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Apr 5 15:12:55 2017 +0200

    test1541: ignore the curl_off_t variable type name comparison
    
    ... the sizes and the formatting strings are what's really important and
    avoids problems with int64_t vs "long long".
    
    Bug: https://curl.haxx.se/mail/lib-2017-04/0019.html
---
 tests/libtest/lib1541.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/libtest/lib1541.c b/tests/libtest/lib1541.c
index ef993dd66..695d35842 100644
--- a/tests/libtest/lib1541.c
+++ b/tests/libtest/lib1541.c
@@ -47,7 +47,9 @@ int test(char *URL)
   socket_h = "Yes";
 #endif
   snprintf(detect, sizeof(detect),
+#ifdef CHECK_CURL_OFF_T
            "CURL_TYPEOF_CURL_OFF_T:     %s\n"
+#endif
            "CURL_FORMAT_CURL_OFF_T:     %s\n"
            "CURL_FORMAT_CURL_OFF_TU:    %s\n"
            "CURL_SUFFIX_CURL_OFF_T:     %s\n"
@@ -58,7 +60,9 @@ int test(char *URL)
            "CURL_PULL_SYS_TYPES_H:      %s\n"
            "CURL_PULL_SYS_SOCKET_H:     %s\n"
 
+#ifdef CHECK_CURL_OFF_T
            , STRING(CURL_TYPEOF_CURL_OFF_T)
+#endif
            , CURL_FORMAT_CURL_OFF_T
            , CURL_FORMAT_CURL_OFF_TU
            , STRING(CURL_SUFFIX_CURL_OFF_T)
@@ -76,7 +80,9 @@ int test(char *URL)
   ssocket_h = "Yes";
 #endif
   snprintf(syst, sizeof(syst),
+#ifdef CHECK_CURL_OFF_T
            "CURL_TYPEOF_CURL_OFF_T:     %s\n"
+#endif
            "CURL_FORMAT_CURL_OFF_T:     %s\n"
            "CURL_FORMAT_CURL_OFF_TU:    %s\n"
            "CURL_SUFFIX_CURL_OFF_T:     %s\n"
@@ -87,7 +93,9 @@ int test(char *URL)
            "CURL_PULL_SYS_TYPES_H:      %s\n"
            "CURL_PULL_SYS_SOCKET_H:     %s\n"
 
+#ifdef CHECK_CURL_OFF_T
            , STRING(CURLSYS_TYPEOF_CURL_OFF_T)
+#endif
            , CURLSYS_FORMAT_CURL_OFF_T
            , CURLSYS_FORMAT_CURL_OFF_TU
            , STRING(CURLSYS_SUFFIX_CURL_OFF_T)

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]