* [LTP] [PATCH] getrlimit02: add EFAULT case & use TST_EXP_FAIL() macro
@ 2022-11-21 11:50 Avinesh Kumar
2022-11-22 3:52 ` Li Wang
0 siblings, 1 reply; 2+ messages in thread
From: Avinesh Kumar @ 2022-11-21 11:50 UTC (permalink / raw)
To: ltp
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [LTP] [PATCH] getrlimit02: add EFAULT case & use TST_EXP_FAIL() macro
2022-11-21 11:50 [LTP] [PATCH] getrlimit02: add EFAULT case & use TST_EXP_FAIL() macro Avinesh Kumar
@ 2022-11-22 3:52 ` Li Wang
0 siblings, 0 replies; 2+ messages in thread
From: Li Wang @ 2022-11-22 3:52 UTC (permalink / raw)
To: Avinesh Kumar; +Cc: ltp
[-- Attachment #1.1: Type: text/plain, Size: 2222 bytes --]
On Mon, Nov 21, 2022 at 7:51 PM Avinesh Kumar <akumar@suse.de> wrote:
> Signed-off-by: Avinesh Kumar <akumar@suse.de>
>
Merged, thanks!
> ---
> .../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
>
>
--
Regards,
Li Wang
[-- Attachment #1.2: Type: text/html, Size: 3649 bytes --]
[-- Attachment #2: Type: text/plain, Size: 60 bytes --]
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-22 3:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-21 11:50 [LTP] [PATCH] getrlimit02: add EFAULT case & use TST_EXP_FAIL() macro Avinesh Kumar
2022-11-22 3:52 ` Li Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox