Kaynağa Gözat

support/testing/tests/package/test_zfs: increase timeout for the ZFS tests

Newest versions requires a bit more time to finish.

Signed-off-by: José Luis Salvador Rufo <salvador.joseluis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
José Luis Salvador Rufo 2 yıl önce
ebeveyn
işleme
1b77c2170d
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      support/testing/tests/package/test_zfs.py

+ 2 - 1
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):