1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Date: Tue, 10 Oct 2023 10:42:24 +0200
Subject: Disable tests that fail in debian build chroot
Origin: vendor, Debian
Forwarded: not-needed, Debian-specific
---
--- a/test/meson.build
+++ b/test/meson.build
@@ -25,9 +25,10 @@ tests = [
'utils',
]
-if get_option('network')
- tests += 'network'
-endif
+# package builds are supposed to run without network access
+#if get_option('network')
+# tests += 'network'
+#endif
if get_option('streaming')
tests += 'nbd'
|