All of lore.kernel.org
 help / color / mirror / Atom feed
From: "xuyang2018.jy@fujitsu.com" <xuyang2018.jy@fujitsu.com>
To: QI Fuli <fukuri.sai@gmail.com>
Cc: "qi.fuli@fujitsu.com" <qi.fuli@fujitsu.com>,
	"ltp@lists.linux.it" <ltp@lists.linux.it>
Subject: Re: [LTP] [PATCH 2/2] syscalls/dup3_02: Convert to new API
Date: Fri, 17 Sep 2021 06:09:07 +0000	[thread overview]
Message-ID: <61443119.1000503@fujitsu.com> (raw)
Message-ID: <20210917060907.YAk1E9dlMcauAoyquLHfAnB8Slh-tSPmNDQfFgYAhaA@z> (raw)
In-Reply-To: <20210916144605.36204-3-qi.fuli@fujitsu.com>

Hi Qi
> From: QI Fuli<qi.fuli@fujitsu.com>
>
> Signed-off-by: QI Fuli<qi.fuli@fujitsu.com>
> ---
>   testcases/kernel/syscalls/dup3/dup3_02.c | 111 +++++------------------
>   1 file changed, 25 insertions(+), 86 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/dup3/dup3_02.c b/testcases/kernel/syscalls/dup3/dup3_02.c
> index e49ec3575..76c4e6e35 100644
> --- a/testcases/kernel/syscalls/dup3/dup3_02.c
> +++ b/testcases/kernel/syscalls/dup3/dup3_02.c
> @@ -1,118 +1,57 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
>   /*
>    * Copyright (c) 2013 Fujitsu Ltd.
>    * Author: Xiaoguang Wang<wangxg.fnst@cn.fujitsu.com>
> - *
> - * This program is free software; you can redistribute it and/or modify it
> - * under the terms of version 2 of the GNU General Public License as
> - * published by the Free Software Foundation.
> - *
> - * This program is distributed in the hope that it would be useful, but
> - * WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
> - *
> - * You should have received a copy of the GNU General Public License along
> - * with this program; if not, write the Free Software Foundation, Inc.,
> - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
>    */
>
> -/*
> - * Description:
> +/*\
> + * [Description]
>    * Verify that,
>    *  1. dup3() fails with -1 return value and sets errno to EINVAL
>    *     if flags contain an invalid value or oldfd was equal to newfd.
>    */
>
Test for various EINVAL error.

EINVAL - oldfd was equal to newfd and doesn't use O_CLOEXEC flag
EINVAL - oldfd was equal to newfd and use O_CLOEXEC flag
EINVAL - flags contain an invalid value.
> -#define _GNU_SOURCE
> -
> -#include<stdio.h>
>   #include<errno.h>
> -#include<unistd.h>
> -#include<fcntl.h>
> -#include<string.h>
> -#include<signal.h>
> -#include<sys/types.h>
> -
> -#include "test.h"
> -#include "safe_macros.h"
> -#include "lapi/fcntl.h"
> +#include "tst_test.h"
> +#include "tst_safe_macros.h"
>   #include "lapi/syscalls.h"
>
> -
> -static void setup(void);
> -static void cleanup(void);
> -
> -#define INVALID_FLAG	-1
> -
>   static int old_fd;
> -static int new_fd;
> +static int new_fd = -1;
>
> -static struct test_case_t {
> +static struct tcase {
>   	int *oldfd;
>   	int *newfd;
>   	int flags;
> -	int exp_errno;
> -} test_cases[] = {
> -	{&old_fd,&old_fd, O_CLOEXEC, EINVAL},
> -	{&old_fd,&old_fd, 0, EINVAL},
> -	{&old_fd,&new_fd, INVALID_FLAG, EINVAL}
> +} tcases[] = {
> +	{&old_fd,&old_fd, O_CLOEXEC},
> +	{&old_fd,&old_fd, 0},
> +	{&old_fd,&new_fd, -1}

>   };
>
> -char *TCID = "dup3_02";
> -int TST_TOTAL = ARRAY_SIZE(test_cases);
> -
> -int main(int ac, char **av)
> +static void run(unsigned int i)
>   {
> -	int lc;
> -	int i;
> -
> -	tst_parse_opts(ac, av, NULL, NULL);
> -
> -	setup();
> -
> -	for (lc = 0; TEST_LOOPING(lc); lc++) {
> -		tst_count = 0;
> +	struct tcase *tc = tcases + i;
>
> -		for (i = 0; i<  TST_TOTAL; i++) {
> -			TEST(ltp_syscall(__NR_dup3, *(test_cases[i].oldfd),
> -			     *(test_cases[i].newfd), test_cases[i].flags));
> -
> -			if (TEST_RETURN != -1) {
> -				tst_resm(TFAIL, "dup3 succeeded unexpectedly");
> -				continue;
> -			}
> -
> -			if (TEST_ERRNO == test_cases[i].exp_errno) {
> -				tst_resm(TPASS | TTERRNO,
> -					 "dup3 failed as expected");
> -			} else {
> -				tst_resm(TFAIL | TTERRNO,
> -					 "dup3 failed unexpectedly; expected:"
> -					 "%d - %s", test_cases[i].exp_errno,
> -					 strerror(test_cases[i].exp_errno));
> -			}
> -		}
> -	}
> -
> -	cleanup();
> -	tst_exit();
> +	TST_EXP_FAIL2(tst_syscall(__NR_dup3, *tc->oldfd, *tc->newfd, tc->flags),
> +				EINVAL,	"syscall(__NR_dup3, %d, %d, %d)",
> +				*tc->oldfd, *tc->newfd, tc->flags);
glibc wrapper.
>   }
>
>   static void setup(void)
>   {
> -	tst_sig(NOFORK, DEF_HANDLER, cleanup);
> -
> -	tst_tmpdir();
> -
> -	TEST_PAUSE;
> -
> -	old_fd = SAFE_CREAT(cleanup, "testeinval.file", 0644);
> -	new_fd = -1;
> +	old_fd = SAFE_CREAT("testeinval.file", 0644);
>   }
>
>   static void cleanup(void)
>   {
>   	if (old_fd>  0)
> -		SAFE_CLOSE(NULL, old_fd);
> -
> -	tst_rmdir();
> +		SAFE_CLOSE(old_fd);
>   }
> +
> +static struct tst_test test = {
> +	.tcnt = ARRAY_SIZE(tcases),
> +	.test = run,
> +	.setup = setup,
> +	.cleanup = cleanup,
".needs_tmpdir = 1" miss.


Best Regards
Yang Xu
> +};

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

  reply	other threads:[~2021-09-17  6:09 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-16 14:46 [LTP] [PATCH 0/2] Convert syscalls/dup3/dup3_{01,02} to new API QI Fuli
2021-09-16 14:46 ` QI Fuli
2021-09-16 14:46   ` [LTP] [PATCH 1/2] syscalls/dup3_01: Rewrite and convert " QI Fuli
2021-09-16 14:46     ` QI Fuli
2021-09-17  5:52       ` xuyang2018.jy
2021-09-17  5:52         ` xuyang2018.jy
2021-09-16 14:46   ` [LTP] [PATCH 2/2] syscalls/dup3_02: Convert " QI Fuli
2021-09-16 14:46     ` QI Fuli
2021-09-17  6:09       ` xuyang2018.jy [this message]
2021-09-17  6:09         ` xuyang2018.jy

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=61443119.1000503@fujitsu.com \
    --to=xuyang2018.jy@fujitsu.com \
    --cc=fukuri.sai@gmail.com \
    --cc=ltp@lists.linux.it \
    --cc=qi.fuli@fujitsu.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.