Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2011-09-04 10:48:27 +0200
committerArthur de Jong <arthur@arthurdejong.org>2011-09-04 10:48:27 +0200
commit10a0581aeb773c9c517a003eab89d17b52f1bce2 (patch)
tree7ac6c40c03cc49d797b50b72deb0bae2c74c387a
parent262315f53d65f0949d585de376462a95eef1d6fd (diff)
warn when we couldn't get the gid or pid, the uid is the only really interesting bit
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1535 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r--tests/test_getpeercred.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/test_getpeercred.c b/tests/test_getpeercred.c
index 56bd611..57274b4 100644
--- a/tests/test_getpeercred.c
+++ b/tests/test_getpeercred.c
@@ -101,6 +101,11 @@ static int open_socket(const char *name)
#define SOCKETNAME "/tmp/test_getpeercred.sock"
+#define assertwarn(assertion) \
+ if (!(assertion)) \
+ fprintf(stderr,"test_getpeercred: %s:%d: %s: Assertion `%s' failed\n", \
+ __FILE__, __LINE__, __ASSERT_FUNCTION, __STRING(assertion));
+
/* the main program... */
int main(int UNUSED(argc),char UNUSED(*argv[]))
{
@@ -119,8 +124,8 @@ int main(int UNUSED(argc),char UNUSED(*argv[]))
/* look up client information */
assert(getpeercred(fsock,&uid,&gid,&pid)==0);
assert(uid==geteuid());
- assert(gid==getegid());
- assert(pid==getpid());
+ assertwarn(gid==getegid());
+ assertwarn(pid==getpid());
/* remove the socket */
unlink(SOCKETNAME);
return 0;