diff mbox series

[v3] swapoff01/swapon01: Define max_runtime 1 mins

Message ID 20240909025243.537071-1-liwang@redhat.com
State Accepted
Headers show
Series [v3] swapoff01/swapon01: Define max_runtime 1 mins | expand

Commit Message

Li Wang Sept. 9, 2024, 2:52 a.m. UTC
From: Petr Vorel <pvorel@suse.cz>

Test run mostly below 1 sec per filesystem, only NTFS is very slow
~ 10-15 sec depending on architecture.

Also this is the only tests in syscalls which fails on due timeout on
emulated risc-v with LTP_TIMEOUT_MUL=2,LTP_RUNTIME_MUL=2 (with the
default 30s runtime => 1 min due LTP_RUNTIME_MUL=2).

Based on the test consumed time on RPi0 and RPi4, we set runtime to 60s,
that should be enough even for slow risc-v and not that high for other archs.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
Signed-off-by: Li Wang <liwang@redhat.com>
---
 testcases/kernel/syscalls/swapoff/swapoff01.c | 1 +
 testcases/kernel/syscalls/swapon/swapon01.c   | 1 +
 2 files changed, 2 insertions(+)

Comments

Avinesh Kumar Sept. 9, 2024, 11:05 a.m. UTC | #1
Hi,

Reviewed-by: Avinesh Kumar <akumar@suse.de>

On Monday, September 9, 2024 4:52:43 AM GMT+2 Li Wang wrote:
> From: Petr Vorel <pvorel@suse.cz>
> 
> Test run mostly below 1 sec per filesystem, only NTFS is very slow
> ~ 10-15 sec depending on architecture.
> 
> Also this is the only tests in syscalls which fails on due timeout on
> emulated risc-v with LTP_TIMEOUT_MUL=2,LTP_RUNTIME_MUL=2 (with the
> default 30s runtime => 1 min due LTP_RUNTIME_MUL=2).
> 
> Based on the test consumed time on RPi0 and RPi4, we set runtime to 60s,
> that should be enough even for slow risc-v and not that high for other archs.
> 
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> Signed-off-by: Li Wang <liwang@redhat.com>
> ---
>  testcases/kernel/syscalls/swapoff/swapoff01.c | 1 +
>  testcases/kernel/syscalls/swapon/swapon01.c   | 1 +
>  2 files changed, 2 insertions(+)
> 
> diff --git a/testcases/kernel/syscalls/swapoff/swapoff01.c b/testcases/kernel/syscalls/swapoff/swapoff01.c
> index 314630267..965d17cc8 100644
> --- a/testcases/kernel/syscalls/swapoff/swapoff01.c
> +++ b/testcases/kernel/syscalls/swapoff/swapoff01.c
> @@ -53,5 +53,6 @@ static struct tst_test test = {
>  	.all_filesystems = 1,
>  	.needs_root = 1,
>  	.test_all = verify_swapoff,
> +	.max_runtime = 60,
>  	.setup = setup
>  };
> diff --git a/testcases/kernel/syscalls/swapon/swapon01.c b/testcases/kernel/syscalls/swapon/swapon01.c
> index 49915c32d..eddcd5788 100644
> --- a/testcases/kernel/syscalls/swapon/swapon01.c
> +++ b/testcases/kernel/syscalls/swapon/swapon01.c
> @@ -51,5 +51,6 @@ static struct tst_test test = {
>  	.all_filesystems = 1,
>  	.needs_cgroup_ctrls = (const char *const []){ "memory", NULL },
>  	.test_all = verify_swapon,
> +	.max_runtime = 60,
>  	.setup = setup
>  };
> 

Regards,
Avinesh
Jan Stancek Sept. 9, 2024, 11:46 a.m. UTC | #2
On Mon, Sep 9, 2024 at 4:53 AM Li Wang <liwang@redhat.com> wrote:
>
> From: Petr Vorel <pvorel@suse.cz>
>
> Test run mostly below 1 sec per filesystem, only NTFS is very slow
> ~ 10-15 sec depending on architecture.
>
> Also this is the only tests in syscalls which fails on due timeout on
> emulated risc-v with LTP_TIMEOUT_MUL=2,LTP_RUNTIME_MUL=2 (with the
> default 30s runtime => 1 min due LTP_RUNTIME_MUL=2).
>
> Based on the test consumed time on RPi0 and RPi4, we set runtime to 60s,
> that should be enough even for slow risc-v and not that high for other archs.
>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> Signed-off-by: Li Wang <liwang@redhat.com>

Acked-by: Jan Stancek <jstancek@redhat.com>

> ---
>  testcases/kernel/syscalls/swapoff/swapoff01.c | 1 +
>  testcases/kernel/syscalls/swapon/swapon01.c   | 1 +
>  2 files changed, 2 insertions(+)
>
> diff --git a/testcases/kernel/syscalls/swapoff/swapoff01.c b/testcases/kernel/syscalls/swapoff/swapoff01.c
> index 314630267..965d17cc8 100644
> --- a/testcases/kernel/syscalls/swapoff/swapoff01.c
> +++ b/testcases/kernel/syscalls/swapoff/swapoff01.c
> @@ -53,5 +53,6 @@ static struct tst_test test = {
>         .all_filesystems = 1,
>         .needs_root = 1,
>         .test_all = verify_swapoff,
> +       .max_runtime = 60,
>         .setup = setup
>  };
> diff --git a/testcases/kernel/syscalls/swapon/swapon01.c b/testcases/kernel/syscalls/swapon/swapon01.c
> index 49915c32d..eddcd5788 100644
> --- a/testcases/kernel/syscalls/swapon/swapon01.c
> +++ b/testcases/kernel/syscalls/swapon/swapon01.c
> @@ -51,5 +51,6 @@ static struct tst_test test = {
>         .all_filesystems = 1,
>         .needs_cgroup_ctrls = (const char *const []){ "memory", NULL },
>         .test_all = verify_swapon,
> +       .max_runtime = 60,
>         .setup = setup
>  };
> --
> 2.46.0
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
>
Cyril Hrubis Sept. 9, 2024, 12:54 p.m. UTC | #3
Hi!
Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
Li Wang Sept. 9, 2024, 2:02 p.m. UTC | #4
Patch merged, thank you all.
diff mbox series

Patch

diff --git a/testcases/kernel/syscalls/swapoff/swapoff01.c b/testcases/kernel/syscalls/swapoff/swapoff01.c
index 314630267..965d17cc8 100644
--- a/testcases/kernel/syscalls/swapoff/swapoff01.c
+++ b/testcases/kernel/syscalls/swapoff/swapoff01.c
@@ -53,5 +53,6 @@  static struct tst_test test = {
 	.all_filesystems = 1,
 	.needs_root = 1,
 	.test_all = verify_swapoff,
+	.max_runtime = 60,
 	.setup = setup
 };
diff --git a/testcases/kernel/syscalls/swapon/swapon01.c b/testcases/kernel/syscalls/swapon/swapon01.c
index 49915c32d..eddcd5788 100644
--- a/testcases/kernel/syscalls/swapon/swapon01.c
+++ b/testcases/kernel/syscalls/swapon/swapon01.c
@@ -51,5 +51,6 @@  static struct tst_test test = {
 	.all_filesystems = 1,
 	.needs_cgroup_ctrls = (const char *const []){ "memory", NULL },
 	.test_all = verify_swapon,
+	.max_runtime = 60,
 	.setup = setup
 };