diff options
author | Raimo Niskanen <[email protected]> | 2018-12-05 15:35:53 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2018-12-05 15:35:53 +0100 |
commit | 0b3ad939020020988e96ff8087aa770b99d1ebb7 (patch) | |
tree | be5d8258209f3bfa79a88944320a46c217c68f4e /lib | |
parent | f37c8b37f49034fe10898ea47ed9c043ad2ba173 (diff) | |
download | otp-0b3ad939020020988e96ff8087aa770b99d1ebb7.tar.gz otp-0b3ad939020020988e96ff8087aa770b99d1ebb7.tar.bz2 otp-0b3ad939020020988e96ff8087aa770b99d1ebb7.zip |
Update Linux version for pktoptions TTL
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kernel/test/gen_tcp_misc_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/kernel/test/gen_tcp_misc_SUITE.erl b/lib/kernel/test/gen_tcp_misc_SUITE.erl index c47de58fae..244bd7e2a0 100644 --- a/lib/kernel/test/gen_tcp_misc_SUITE.erl +++ b/lib/kernel/test/gen_tcp_misc_SUITE.erl @@ -1998,8 +1998,9 @@ recvttl_ok({unix,darwin}, OSVer) -> not semver_lt(OSVer, {19,0,0}); %% Using the option returns einval, so it is not implemented. recvttl_ok({unix,freebsd}, OSVer) -> not semver_lt(OSVer, {11,2,0}); recvttl_ok({unix,sunos}, OSVer) -> not semver_lt(OSVer, {5,12,0}); +%% Does not return any value - not implemented for pktoptions +recvttl_ok({unix,linux}, OSVer) -> not semver_lt(OSVer, {2,7,0}); %% -recvttl_ok({unix,linux}, _) -> true; recvttl_ok({unix,_}, _) -> true; recvttl_ok(_, _) -> false. |