File: disable-network-tests.patch

package info (click to toggle)
rauc 1.13-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,224 kB
  • sloc: ansic: 34,866; python: 2,435; sh: 1,364; xml: 53; makefile: 41
file content (22 lines) | stat: -rw-r--r-- 531 bytes parent folder | download
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'