aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Cervesato <andrea.cervesato@suse.com>2024-01-24 11:23:59 +0100
committerCyril Hrubis <chrubis@suse.cz>2024-01-24 14:04:35 +0100
commitc0c1187d200584b2c846c67f53539d7e20d18558 (patch)
tree26de1e0412ed8b802b3b53822dd439b95d7e7221
parent4e9400050683051c898db674bf0ba8d8ca9d6d2c (diff)
downloadltp-c0c1187d200584b2c846c67f53539d7e20d18558.tar.gz
Increase .max_runtime for fsx-linux
Sometimes fsx-linux test is timing out on slow systems. We increase its value to 1800 seconds, so we ensure test won't timeout in most cases. The value has been choosen according with aio testing suite, which has 1800 seconds timeout and it worked really well so far. Fixes: 176667f40710 ("fsx-linux: Add .max_runtime = 60") Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com> Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
-rw-r--r--testcases/kernel/fs/fsx-linux/fsx-linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/kernel/fs/fsx-linux/fsx-linux.c b/testcases/kernel/fs/fsx-linux/fsx-linux.c
index 32fc70e01..ba1e21bbc 100644
--- a/testcases/kernel/fs/fsx-linux/fsx-linux.c
+++ b/testcases/kernel/fs/fsx-linux/fsx-linux.c
@@ -367,7 +367,7 @@ static struct tst_test test = {
.setup = setup,
.cleanup = cleanup,
.test_all = run,
- .max_runtime = 60,
+ .max_runtime = 1800,
.options = (struct tst_option[]) {
{ "l:", &str_file_max_size, "Maximum size in MB of the test file(s) (default 262144)" },
{ "o:", &str_op_max_size, "Maximum size for single operation (default 65536)" },