diff options
author | Niels Thykier <niels@thykier.net> | 2017-12-30 09:51:08 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2017-12-30 09:51:10 +0000 |
commit | e8359d54d79027467285a21c96daff3f8f9838ed (patch) | |
tree | 8db4070afb33de4e3954d908c1e4a0e1baea2c84 /t | |
parent | 78b9f2459decda2e360dd904065c438f1a661106 (diff) | |
download | debhelper-e8359d54d79027467285a21c96daff3f8f9838ed.tar.gz |
dh_missing: Support wildcards in d/not-installed
Closes: Debian#884556
Closes: nthykier/debhelper#1
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/dh_missing/04-not-installed-glob.t | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/t/dh_missing/04-not-installed-glob.t b/t/dh_missing/04-not-installed-glob.t new file mode 100755 index 00000000..b46eca3a --- /dev/null +++ b/t/dh_missing/04-not-installed-glob.t @@ -0,0 +1,37 @@ +#!/usr/bin/perl +use strict; +use warnings; +use Test::More; + +use File::Basename qw(dirname); +use lib dirname(dirname(__FILE__)); +use Test::DH; +use Debian::Debhelper::Dh_Lib qw(!dirname); + +our $TEST_DH_FIXTURE_DIR = 'template'; +our @TEST_DH_EXTRA_TEMPLATE_FILES = (qw( + debian/changelog + debian/control + debian/foo.install + file-for-foo + Makefile +)); + +plan(tests => 1); + +each_compat_subtest { + rm_files('debian/not-installed'); + open(my $fd, '>', 'debian/not-installed') or error("open(d/not-installed): $!"); + # Non-glob match + print {$fd} "usr/bin/file-for-foo\n"; + # Glob match (note that it must not match the above) + print {$fd} "usr/bin/file-for-foo-*\n"; + # Non-matches (silently ignored) + print {$fd} "usr/bin/does-not-exist\n"; + print {$fd} "usr/bin/does-not-exist-*\n"; + close($fd) or error("close(d/not-installed: $!"); + ok(run_dh_tool('dh_clean')); + is(system('make', 'installmore'), 0); + ok(run_dh_tool('dh_missing', '--fail-missing')); +}; + |