Skip to content

Commit

Permalink
setregid01.c: Turn comment into docparse format and use TST_EXP_PASS …
Browse files Browse the repository at this point in the history
…macro

Signed-off-by: Avinesh Kumar <[email protected]>
Reviewed-by: Richard Palethorpe <[email protected]>
  • Loading branch information
Avinesh authored and Richard Palethorpe committed Jan 10, 2023
1 parent eca1d3c commit 4d99247
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions testcases/kernel/syscalls/setregid/setregid01.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,38 +15,35 @@
* 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 {
gid_t *arg1;
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)
Expand Down

0 comments on commit 4d99247

Please sign in to comment.