diff mbox series

[2/2] package/zfs: increase timeout for the ZFS tests

Message ID 20221004011034.1283650-2-salvador.joseluis@gmail.com
State Accepted
Headers show
Series [1/2] package/zfs: bump version to 2.1.6 | expand

Commit Message

José Luis Salvador Rufo Oct. 4, 2022, 1:10 a.m. UTC
Newest versions requires a bit more time to finish.

Signed-off-by: José Luis Salvador Rufo <salvador.joseluis@gmail.com>
---
 support/testing/tests/package/test_zfs.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/support/testing/tests/package/test_zfs.py b/support/testing/tests/package/test_zfs.py
index 688b60d7c4..1f01ddd768 100644
--- a/support/testing/tests/package/test_zfs.py
+++ b/support/testing/tests/package/test_zfs.py
@@ -4,6 +4,7 @@  import infra.basetest
 
 
 class TestZfsBase(infra.basetest.BRTest):
+    timeout = 60 * 3
     config = \
         """
         BR2_x86_64=y
@@ -57,7 +58,7 @@  class TestZfsBase(infra.basetest.BRTest):
             "arc_summary",
         ]
         for cmd in cmds:
-            self.assertRunOk(cmd)
+            self.assertRunOk(cmd, timeout=self.timeout)
 
 
 class TestZfsGlibc(TestZfsBase):