From e7f2d6d9081e63994f2492ad8a33cffd45032428 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Tue, 16 Jul 2024 16:22:34 +0200 Subject: [PATCH] [tests] 5 seconds was too little --- test/ecmascript/assert/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ecmascript/assert/meson.build b/test/ecmascript/assert/meson.build index 956076af..64c77afa 100644 --- a/test/ecmascript/assert/meson.build +++ b/test/ecmascript/assert/meson.build @@ -83,7 +83,7 @@ took = [ if conf_data.get('CONFIG_ECMASCRIPT') foreach t: tofail - test(t, elinks, protocol: 'exitcode', is_parallel: true, timeout: 5, should_fail: true, verbose: false, workdir: meson.source_root() / 'test/ecmascript/assert/', + test(t, elinks, protocol: 'exitcode', is_parallel: true, timeout: 30, should_fail: true, verbose: false, workdir: meson.source_root() / 'test/ecmascript/assert/', args: ['--test', '1', '--eval', 'set ecmascript.enable = 1', '--eval', 'set ecmascript.enable_console_log = 1', '--eval', 'set ui.sessions.fork_on_start = 0', @@ -91,7 +91,7 @@ if conf_data.get('CONFIG_ECMASCRIPT') t]) endforeach foreach t : took - test(t, elinks, protocol: 'exitcode', is_parallel: true, timeout: 5, should_fail: false, verbose: false, workdir: meson.source_root() / 'test/ecmascript/assert', + test(t, elinks, protocol: 'exitcode', is_parallel: true, timeout: 30, should_fail: false, verbose: false, workdir: meson.source_root() / 'test/ecmascript/assert', args: ['--test', '1', '--eval', 'set ecmascript.enable = 1', '--eval', 'set ecmascript.enable_console_log = 1', '--eval', 'set ui.sessions.fork_on_start = 0',