From e83bead09f35a7f3024ec7390394326e89b00315 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Thu, 27 Sep 2007 10:22:06 +0000 Subject: Relevant BUGIDs: Purpose of commit: bugfix Commit summary: --------------- 2007-09-27 Thorsten Kukuk * xtests/run-xtests.sh: Add support to skip tests. * xtests/tst-pam_limits1.c: Skip test if RLIMIT_NICE is not defined. --- xtests/tst-pam_limits1.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'xtests/tst-pam_limits1.c') diff --git a/xtests/tst-pam_limits1.c b/xtests/tst-pam_limits1.c index cf025d3d..ed3d3679 100644 --- a/xtests/tst-pam_limits1.c +++ b/xtests/tst-pam_limits1.c @@ -98,6 +98,7 @@ main(int argc, char *argv[]) if (argc > 1 && strcmp (argv[1], "-d") == 0) debug = 1; +#ifdef RLIMIT_NICE retval = pam_start("tst-pam_limits1", user, &conv, &pamh); if (retval != PAM_SUCCESS) { @@ -145,4 +146,10 @@ main(int argc, char *argv[]) return 1; } return 0; +#else + if (debug) + fprintf (stderr, "pam_limits1: RLIMIT_NICE does not exist)\n"); + + return 77; +#endif } -- cgit v1.2.3