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';
+ }
};
|