All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [ndctl PATCH] build: Fix test timeouts
@ 2022-03-11  3:35 Dan Williams
  0 siblings, 0 replies; only message in thread
From: Dan Williams @ 2022-03-11  3:35 UTC (permalink / raw
  To: vishal.l.verma; +Cc: nvdimm

Older versions of meson, like the version that ships in CentOS Stream
interpret a timeout of 0 as immediately fail, rather than infinite test
run. Specify a 10 minute timeout by default instead.

Fixes: 4e5faa1726d2 ("build: Add meson build infrastructure")
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
 test/meson.build |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/meson.build b/test/meson.build
index 07a5bb6e7f62..7ccd45195236 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -227,7 +227,7 @@ foreach t : tests
       mmap,
     ],
     suite: t[2],
-    timeout : 0,
+    timeout : 600,
     env : [
       'NDCTL=@0@'.format(ndctl_tool.full_path()),
       'DAXCTL=@0@'.format(daxctl_tool.full_path()),


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-11  3:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-11  3:35 [ndctl PATCH] build: Fix test timeouts Dan Williams

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.