public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] setregid01.c: Turn comment into docparse format and use TST_EXP_PASS macro
@ 2023-01-10 13:01 Avinesh Kumar
  2023-01-10 14:41 ` Richard Palethorpe
  0 siblings, 1 reply; 2+ messages in thread
From: Avinesh Kumar @ 2023-01-10 13:01 UTC (permalink / raw)
  To: ltp

Signed-off-by: Avinesh Kumar <akumar@suse.de>
---
 .../kernel/syscalls/setregid/setregid01.c     | 19 ++++++++-----------
 1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/testcases/kernel/syscalls/setregid/setregid01.c b/testcases/kernel/syscalls/setregid/setregid01.c
index 8c9e11918..741028a4a 100644
--- a/testcases/kernel/syscalls/setregid/setregid01.c
+++ b/testcases/kernel/syscalls/setregid/setregid01.c
@@ -15,14 +15,16 @@
  * Co-pilot: Dave Fenner
  */
 
-/*
- * Testcase to test the basic functionality of setregid(2) systemm call.
+/*\
+ * [Description]
+ *
+ * Verify the basic functionality of setregid(2) system call.
  */
 
 #include "tst_test.h"
 #include "compat_tst_16.h"
 
-static gid_t gid, egid;	    /* current real and effective group id */
+static gid_t gid, egid;
 static gid_t neg_one = -1;
 
 static struct tcase {
@@ -30,23 +32,18 @@ static struct tcase {
 	gid_t *arg2;
 	const char *msg;
 } tcases[] = {
-	{&neg_one, &neg_one, "Dont change either real or effective gid" },
+	{&neg_one, &neg_one, "Leave real and effective both gids unchanged" },
 	{&neg_one, &egid,    "Change effective to effective gid" },
 	{&gid,     &neg_one, "Change real to real gid" },
 	{&neg_one, &gid,     "Change effective to real gid" },
-	{&gid,     &gid,     "Try to change real to current real" }
+	{&gid,     &gid,     "Change real and effective both gids to current real gid" }
 };
 
 static void run(unsigned int n)
 {
 	struct tcase *tc = &tcases[n];
 
-	TEST(SETREGID(*tc->arg1, *tc->arg2));
-
-	if (TST_RET == -1)
-		tst_res(TFAIL | TTERRNO, "%s", tc->msg);
-	else
-		tst_res(TPASS, "%s", tc->msg);
+	TST_EXP_PASS(SETREGID(*tc->arg1, *tc->arg2), "%s:", tc->msg);
 }
 
 static void setup(void)
-- 
2.39.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [LTP] [PATCH] setregid01.c: Turn comment into docparse format and use TST_EXP_PASS macro
  2023-01-10 13:01 [LTP] [PATCH] setregid01.c: Turn comment into docparse format and use TST_EXP_PASS macro Avinesh Kumar
@ 2023-01-10 14:41 ` Richard Palethorpe
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Palethorpe @ 2023-01-10 14:41 UTC (permalink / raw)
  To: Avinesh Kumar; +Cc: ltp

Hello,

Merged, thanks!

Avinesh Kumar <akumar@suse.de> writes:

> Signed-off-by: Avinesh Kumar <akumar@suse.de>
> ---
>  .../kernel/syscalls/setregid/setregid01.c     | 19 ++++++++-----------
>  1 file changed, 8 insertions(+), 11 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/setregid/setregid01.c b/testcases/kernel/syscalls/setregid/setregid01.c
> index 8c9e11918..741028a4a 100644
> --- a/testcases/kernel/syscalls/setregid/setregid01.c
> +++ b/testcases/kernel/syscalls/setregid/setregid01.c
> @@ -15,14 +15,16 @@
>   * Co-pilot: Dave Fenner
>   */
>  
> -/*
> - * Testcase to test the basic functionality of setregid(2) systemm call.
> +/*\
> + * [Description]
> + *
> + * Verify the basic functionality of setregid(2) system call.
>   */
>  
>  #include "tst_test.h"
>  #include "compat_tst_16.h"
>  
> -static gid_t gid, egid;	    /* current real and effective group id */
> +static gid_t gid, egid;
>  static gid_t neg_one = -1;
>  
>  static struct tcase {
> @@ -30,23 +32,18 @@ static struct tcase {
>  	gid_t *arg2;
>  	const char *msg;
>  } tcases[] = {
> -	{&neg_one, &neg_one, "Dont change either real or effective gid" },
> +	{&neg_one, &neg_one, "Leave real and effective both gids unchanged" },
>  	{&neg_one, &egid,    "Change effective to effective gid" },
>  	{&gid,     &neg_one, "Change real to real gid" },
>  	{&neg_one, &gid,     "Change effective to real gid" },
> -	{&gid,     &gid,     "Try to change real to current real" }
> +	{&gid,     &gid,     "Change real and effective both gids to current real gid" }
>  };
>  
>  static void run(unsigned int n)
>  {
>  	struct tcase *tc = &tcases[n];
>  
> -	TEST(SETREGID(*tc->arg1, *tc->arg2));
> -
> -	if (TST_RET == -1)
> -		tst_res(TFAIL | TTERRNO, "%s", tc->msg);
> -	else
> -		tst_res(TPASS, "%s", tc->msg);
> +	TST_EXP_PASS(SETREGID(*tc->arg1, *tc->arg2), "%s:", tc->msg);
>  }
>  
>  static void setup(void)
> -- 
> 2.39.0


-- 
Thank you,
Richard.

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-01-10 14:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-10 13:01 [LTP] [PATCH] setregid01.c: Turn comment into docparse format and use TST_EXP_PASS macro Avinesh Kumar
2023-01-10 14:41 ` Richard Palethorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox