qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tests/acceptance: Increase the timeout in the replay tests
@ 2021-01-27  6:52 Thomas Huth
  2021-01-27  6:58 ` Pavel Dovgalyuk
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas Huth @ 2021-01-27  6:52 UTC (permalink / raw)
  To: qemu-devel, Wainer dos Santos Moschetta, Pavel Dovgalyuk
  Cc: Paolo Bonzini, Philippe Mathieu-Daudé, Cleber Rosa

Our gitlab-CI just showed a failed test_ppc_mac99 since it was apparently
killed some few seconds before the test finished. Allow it some more
time to complete.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 Seen in this test log:
 https://gitlab.com/qemu-project/qemu/-/jobs/987148065/artifacts/file/build/tests/results/latest/test-results/26-tests_acceptance_replay_kernel.py_ReplayKernelNormal.test_ppc_mac99/debug.log

 tests/acceptance/replay_kernel.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py
index 772633b01d..c1cb862468 100644
--- a/tests/acceptance/replay_kernel.py
+++ b/tests/acceptance/replay_kernel.py
@@ -31,7 +31,7 @@ class ReplayKernelBase(LinuxKernelTest):
     terminates.
     """
 
-    timeout = 90
+    timeout = 120
     KERNEL_COMMON_COMMAND_LINE = 'printk.time=1 panic=-1 '
 
     def run_vm(self, kernel_path, kernel_command_line, console_pattern,
-- 
2.27.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] tests/acceptance: Increase the timeout in the replay tests
  2021-01-27  6:52 [PATCH] tests/acceptance: Increase the timeout in the replay tests Thomas Huth
@ 2021-01-27  6:58 ` Pavel Dovgalyuk
  2021-01-28 15:31 ` Wainer dos Santos Moschetta
  2021-02-05 16:35 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Pavel Dovgalyuk @ 2021-01-27  6:58 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Wainer dos Santos Moschetta, Pavel Dovgalyuk
  Cc: Paolo Bonzini, Philippe Mathieu-Daudé, Cleber Rosa

On 27.01.2021 09:52, Thomas Huth wrote:
> Our gitlab-CI just showed a failed test_ppc_mac99 since it was apparently
> killed some few seconds before the test finished. Allow it some more
> time to complete.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>

Acked-by: Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>

> ---
>   Seen in this test log:
>   https://gitlab.com/qemu-project/qemu/-/jobs/987148065/artifacts/file/build/tests/results/latest/test-results/26-tests_acceptance_replay_kernel.py_ReplayKernelNormal.test_ppc_mac99/debug.log
> 
>   tests/acceptance/replay_kernel.py | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py
> index 772633b01d..c1cb862468 100644
> --- a/tests/acceptance/replay_kernel.py
> +++ b/tests/acceptance/replay_kernel.py
> @@ -31,7 +31,7 @@ class ReplayKernelBase(LinuxKernelTest):
>       terminates.
>       """
>   
> -    timeout = 90
> +    timeout = 120
>       KERNEL_COMMON_COMMAND_LINE = 'printk.time=1 panic=-1 '
>   
>       def run_vm(self, kernel_path, kernel_command_line, console_pattern,
> 



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tests/acceptance: Increase the timeout in the replay tests
  2021-01-27  6:52 [PATCH] tests/acceptance: Increase the timeout in the replay tests Thomas Huth
  2021-01-27  6:58 ` Pavel Dovgalyuk
@ 2021-01-28 15:31 ` Wainer dos Santos Moschetta
  2021-02-05 16:35 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Wainer dos Santos Moschetta @ 2021-01-28 15:31 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Pavel Dovgalyuk
  Cc: Paolo Bonzini, Philippe Mathieu-Daudé, Cleber Rosa


On 1/27/21 3:52 AM, Thomas Huth wrote:
> Our gitlab-CI just showed a failed test_ppc_mac99 since it was apparently
> killed some few seconds before the test finished. Allow it some more
> time to complete.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   Seen in this test log:
>   https://gitlab.com/qemu-project/qemu/-/jobs/987148065/artifacts/file/build/tests/results/latest/test-results/26-tests_acceptance_replay_kernel.py_ReplayKernelNormal.test_ppc_mac99/debug.log
>
>   tests/acceptance/replay_kernel.py | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)


Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>


>
> diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py
> index 772633b01d..c1cb862468 100644
> --- a/tests/acceptance/replay_kernel.py
> +++ b/tests/acceptance/replay_kernel.py
> @@ -31,7 +31,7 @@ class ReplayKernelBase(LinuxKernelTest):
>       terminates.
>       """
>   
> -    timeout = 90
> +    timeout = 120
>       KERNEL_COMMON_COMMAND_LINE = 'printk.time=1 panic=-1 '
>   
>       def run_vm(self, kernel_path, kernel_command_line, console_pattern,



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tests/acceptance: Increase the timeout in the replay tests
  2021-01-27  6:52 [PATCH] tests/acceptance: Increase the timeout in the replay tests Thomas Huth
  2021-01-27  6:58 ` Pavel Dovgalyuk
  2021-01-28 15:31 ` Wainer dos Santos Moschetta
@ 2021-02-05 16:35 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-02-05 16:35 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Wainer dos Santos Moschetta, Pavel Dovgalyuk
  Cc: Paolo Bonzini, Cleber Rosa

On 1/27/21 7:52 AM, Thomas Huth wrote:
> Our gitlab-CI just showed a failed test_ppc_mac99 since it was apparently
> killed some few seconds before the test finished. Allow it some more
> time to complete.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  Seen in this test log:
>  https://gitlab.com/qemu-project/qemu/-/jobs/987148065/artifacts/file/build/tests/results/latest/test-results/26-tests_acceptance_replay_kernel.py_ReplayKernelNormal.test_ppc_mac99/debug.log
> 
>  tests/acceptance/replay_kernel.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Hopefully this buy us time. Applied to my acceptance-testing tree.



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-05 16:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-27  6:52 [PATCH] tests/acceptance: Increase the timeout in the replay tests Thomas Huth
2021-01-27  6:58 ` Pavel Dovgalyuk
2021-01-28 15:31 ` Wainer dos Santos Moschetta
2021-02-05 16:35 ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).