mirror of
https://github.com/curl/curl.git
synced 2026-08-24 18:23:33 +03:00
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
This commit is contained in:
parent
65154588f6
commit
8761a40fd9
1 changed files with 8 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue