[LTP] [PATCH v2 2/2] clock_getres01: add test variants
Cyril Hrubis
chrubis@suse.cz
Tue Aug 13 14:13:40 CEST 2019
Hi!
> 0 - default, could be either VDSO or syscall
> 1 - syscall with valid res parameter
> 2 - syscall with NULL res parameter
>
> Signed-off-by: Jan Stancek <jstancek@redhat.com>
> ---
> testcases/kernel/syscalls/clock_getres/clock_getres01.c | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/testcases/kernel/syscalls/clock_getres/clock_getres01.c b/testcases/kernel/syscalls/clock_getres/clock_getres01.c
> index df3e84271ad9..a4134bc1d3c2 100644
> --- a/testcases/kernel/syscalls/clock_getres/clock_getres01.c
> +++ b/testcases/kernel/syscalls/clock_getres/clock_getres01.c
> @@ -13,6 +13,7 @@
> #include <errno.h>
>
> #include "tst_test.h"
> +#include "lapi/syscalls.h"
> #include "lapi/posix_clocks.h"
>
> static struct timespec res;
> @@ -39,7 +40,18 @@ static struct test_case {
>
> static void do_test(unsigned int i)
> {
> - TEST(clock_getres(tcase[i].clk_id, tcase[i].res));
> + switch (tst_variant) {
> + case 0:
> + TEST(clock_getres(tcase[i].clk_id, tcase[i].res));
> + break;
> + case 1:
> + TEST(tst_syscall(__NR_clock_getres, tcase[i].clk_id,
> + tcase[i].res));
> + break;
> + case 2:
> + TEST(tst_syscall(__NR_clock_getres, tcase[i].clk_id, NULL));
> + break;
> + }
>
> if (TST_RET != tcase[i].ret) {
> if (TST_ERR == EINVAL) {
> @@ -64,4 +76,5 @@ static void do_test(unsigned int i)
> static struct tst_test test = {
> .test = do_test,
> .tcnt = ARRAY_SIZE(tcase),
> + .test_variants = 3,
> };
Can we please print which variant we are about to test from the test
setup() as well?
--
Cyril Hrubis
chrubis@suse.cz
More information about the ltp
mailing list