You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The errno value was hardcoded into the test, but it is different for
Linux and Mac OS.
Linux:
```
$ cc --std=c89 -Wall -Wextra -x c <(echo -e '#include <stdio.h>\n#include<errno.h>\n#include <string.h>\n\nint main() { int x = EINPROGRESS; printf("errno: %d; msg: %s\\n", x, strerror(x)); return 0; }') && ./a.out; rm a.out
errno: 115; msg: Operation now in progress
```
Mac OS:
```
$ cc --std=c89 -Wall -Wextra -x c <(echo -e '#include <stdio.h>\n#include<errno.h>\n#include <string.h>\n\nint main() { int x = EINPROGRESS; printf("errno: %d; msg: %s\\n", x, strerror(x)); return 0; }') && ./a.out; rm a.out
errno: 36; msg: Operation now in progress
```
As result the test fails on Mac OS on recent tarantool version (where
the new libcurl is bundled).
This commit eliminates the check for particular errno value.
Follows up #70 (PR #71)
Fixes#74
0 commit comments