From: Avinesh Kumar <akumar@suse.de>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH] getrlimit02: add EFAULT case & use TST_EXP_FAIL() macro
Date: Mon, 21 Nov 2022 17:20:38 +0530 [thread overview]
Message-ID: <20221121115038.27564-1-akumar@suse.de> (raw)
Signed-off-by: Avinesh Kumar <akumar@suse.de>
---
.../kernel/syscalls/getrlimit/getrlimit02.c | 27 ++++++++-----------
1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/testcases/kernel/syscalls/getrlimit/getrlimit02.c b/testcases/kernel/syscalls/getrlimit/getrlimit02.c
index 586ca5a67..9b68ce20b 100644
--- a/testcases/kernel/syscalls/getrlimit/getrlimit02.c
+++ b/testcases/kernel/syscalls/getrlimit/getrlimit02.c
@@ -18,33 +18,28 @@
#include <sys/resource.h>
#include "tst_test.h"
-#define RLIMIT_TOO_HIGH 1000
+#define INVALID_RES_TYPE 1000
static struct rlimit rlim;
static struct tcase {
- int exp_errno; /* Expected error no */
- char *exp_errval; /* Expected error value string */
- struct rlimit *rlim; /* rlimit structure */
- int res_type; /* resource type */
+ int exp_errno;
+ char *desc;
+ struct rlimit *rlim;
+ int res_type;
} tcases[] = {
- { EINVAL, "EINVAL", &rlim, RLIMIT_TOO_HIGH}
+ {EFAULT, "invalid address", (void *)-1, RLIMIT_CORE},
+ {EINVAL, "invalid resource type", &rlim, INVALID_RES_TYPE}
};
static void verify_getrlimit(unsigned int i)
{
struct tcase *tc = &tcases[i];
- TEST(getrlimit(tc->res_type, tc->rlim));
-
- if ((TST_RET == -1) && (TST_ERR == tc->exp_errno)) {
- tst_res(TPASS, "expected failure; got %s",
- tc->exp_errval);
- } else {
- tst_res(TFAIL, "call failed to produce "
- "expected error; errno: %d : %s",
- TST_ERR, strerror(TST_ERR));
- }
+ TST_EXP_FAIL(getrlimit(tc->res_type, tc->rlim),
+ tc->exp_errno,
+ "getrlimit() with %s",
+ tc->desc);
}
static struct tst_test test = {
--
2.38.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next reply other threads:[~2022-11-21 11:50 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-21 11:50 Avinesh Kumar [this message]
2022-11-22 3:52 ` [LTP] [PATCH] getrlimit02: add EFAULT case & use TST_EXP_FAIL() macro Li Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221121115038.27564-1-akumar@suse.de \
--to=akumar@suse.de \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox