File: 0003-disable-distcheck.patch

package info (click to toggle)
libzonemaster-perl 4.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,024 kB
  • sloc: perl: 14,031; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 765 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: disable test failing due to packaging files.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2022-12-21
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libzonemaster-perl.orig/t/manifest.t
+++ libzonemaster-perl/t/manifest.t
@@ -32,6 +32,9 @@
 
 subtest "distcheck" => sub {
     my ( $output, $status ) = make "distcheck";
-    is $status, 0,  $makebin . ' distcheck exits with value 0';
-    is $output, "", $makebin . ' distcheck gives empty output';
+    SKIP: {
+        skip "Manifest testing incompatible with packaging practices.", 2;
+        is $status, 0,  $makebin . ' distcheck exits with value 0';
+        is $output, "", $makebin . ' distcheck gives empty output';
+    }
 };