diff options
author | Carl Lerche <me@carllerche.com> | 2015-05-21 15:23:40 -0700 |
---|---|---|
committer | Carl Lerche <me@carllerche.com> | 2015-05-21 15:34:50 -0700 |
commit | 3fc83b942a57fd76372e83e987fc191f6bdf6a5c (patch) | |
tree | c89c7a1c6046c4ad62d9a6faee244200f069735d /nix-test/src/const.c | |
parent | 74d18318803a9a41632cab15d65305fd414aa198 (diff) | |
download | nix-3fc83b942a57fd76372e83e987fc191f6bdf6a5c.zip |
Fix travis tests
Diffstat (limited to 'nix-test/src/const.c')
-rw-r--r-- | nix-test/src/const.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/nix-test/src/const.c b/nix-test/src/const.c index d9c1054a..94d71eb5 100644 --- a/nix-test/src/const.c +++ b/nix-test/src/const.c @@ -235,7 +235,7 @@ get_int_const(const char* err) { GET_CONST(SO_RCVTIMEO); GET_CONST(SO_SNDTIMEO); GET_CONST(SO_REUSEADDR); - GET_CONST(SO_REUSEPORT); + // GET_CONST(SO_REUSEPORT); GET_CONST(SO_SNDBUF); GET_CONST(SO_TIMESTAMP); GET_CONST(SO_TYPE); @@ -266,16 +266,17 @@ get_int_const(const char* err) { GET_CONST(SO_DOMAIN); GET_CONST(SO_MARK); GET_CONST(TCP_CORK); - GET_CONST(SO_BUSY_POLL); + // GET_CONST(SO_BUSY_POLL); GET_CONST(SO_RXQ_OVFL); GET_CONST(SO_PASSCRED); GET_CONST(SO_PRIORITY); GET_CONST(SO_PROTOCOL); GET_CONST(SO_RCVBUFFORCE); - GET_CONST(SO_PEEK_OFF); + // GET_CONST(SO_PEEK_OFF); GET_CONST(SO_PEERCRED); GET_CONST(SO_SNDBUFFORCE); -#endif return -1; + +#endif } |