From 12d4a1c39b5805844df48c575386bfb6a500b5dd Mon Sep 17 00:00:00 2001 From: Tom Schulz Date: Mon, 5 Oct 2015 22:19:49 +0200 Subject: [PATCH] s4: fix linking smbtorture on Solaris. Don't test getgrouplist if we do not have it. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11512 Signed-off-by: Tom Schulz Reviewed-by: Michael Adam Reviewed-by: Ralph Boehme --- source4/torture/local/nss_tests.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source4/torture/local/nss_tests.c b/source4/torture/local/nss_tests.c index e814dba..2cd6122 100644 --- a/source4/torture/local/nss_tests.c +++ b/source4/torture/local/nss_tests.c @@ -698,6 +698,7 @@ static bool test_group_r_cross(struct torture_context *tctx) return true; } +#ifdef HAVE_GETGROUPLIST static bool test_getgrouplist(struct torture_context *tctx, const char *user, gid_t gid, @@ -732,6 +733,7 @@ static bool test_getgrouplist(struct torture_context *tctx, return true; } +#endif /* HAVE_GETGROUPLIST */ static bool test_user_in_group(struct torture_context *tctx, const struct passwd *pwd, @@ -759,12 +761,14 @@ static bool test_membership_user(struct torture_context *tctx, int g, i; bool primary_group_had_user_member = false; +#ifdef HAVE_GETGROUPLIST torture_assert(tctx, test_getgrouplist(tctx, pwd->pw_name, pwd->pw_gid, &user_groups, &num_user_groups), "failed to test getgrouplist"); +#endif /* HAVE_GETGROUPLIST */ for (g=0; g < num_user_groups; g++) { torture_assert(tctx, test_getgrgid(tctx, user_groups[g], NULL), -- 2.4.3