summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/lib/libc/gen/t_sethostname.c
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2014-10-10 19:18:52 +0000
committerngie <ngie@FreeBSD.org>2014-10-10 19:18:52 +0000
commit0af4e9789883c048c1bb1d7220f5acf4833f6a86 (patch)
tree76c8d856e36250a97111129003b14d6c27d05bb2 /contrib/netbsd-tests/lib/libc/gen/t_sethostname.c
parent3528154dd45c4d89e5523e5ac883c71f3392f2d7 (diff)
downloadFreeBSD-src-0af4e9789883c048c1bb1d7220f5acf4833f6a86.zip
FreeBSD-src-0af4e9789883c048c1bb1d7220f5acf4833f6a86.tar.gz
FreeBSD doesn't support strings greater than MAXHOSTNAMELEN-1 in
{get,set}{domain,host}name. Adjust the tests to not exceed that value when testing out the code Add a positive and negative test for MAXHOSTNAMELEN-1 and MAXHOSTNAMELEN, respectively PR: 181127 In collaboration with: pho Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'contrib/netbsd-tests/lib/libc/gen/t_sethostname.c')
-rw-r--r--contrib/netbsd-tests/lib/libc/gen/t_sethostname.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/gen/t_sethostname.c b/contrib/netbsd-tests/lib/libc/gen/t_sethostname.c
index a753ac7..9c5abac 100644
--- a/contrib/netbsd-tests/lib/libc/gen/t_sethostname.c
+++ b/contrib/netbsd-tests/lib/libc/gen/t_sethostname.c
@@ -63,8 +63,20 @@ ATF_TC_BODY(sethostname_basic, tc)
(void)memset(name, 0, sizeof(name));
+#if defined(__FreeBSD__)
+ /*
+ * Sanity checks to ensure that the wrong invariant isn't being
+ * tested for per PR # 181127
+ */
+ ATF_REQUIRE_EQ(sizeof(hosts[i]), MAXHOSTNAMELEN);
+ ATF_REQUIRE_EQ(sizeof(name), MAXHOSTNAMELEN);
+
+ ATF_REQUIRE(sethostname(hosts[i], sizeof(hosts[i]) - 1) == 0);
+ ATF_REQUIRE(gethostname(name, sizeof(name) - 1) == 0);
+#else
ATF_REQUIRE(sethostname(hosts[i], sizeof(hosts[i])) == 0);
ATF_REQUIRE(gethostname(name, sizeof(name)) == 0);
+#endif
ATF_REQUIRE(strcmp(hosts[i], name) == 0);
}
@@ -94,6 +106,10 @@ ATF_TC_BODY(sethostname_limit, tc)
ATF_TC_CLEANUP(sethostname_limit, tc)
{
+#if defined(__FreeBSD__)
+ ATF_REQUIRE(sethostname(host, MAXHOSTNAMELEN - 1 ) == 0);
+ ATF_REQUIRE(sethostname(host, MAXHOSTNAMELEN) == -1);
+#endif
(void)sethostname(host, sizeof(host));
}
OpenPOWER on IntegriCloud