blob: 92345d1d624a01032ce86ceb2f8c94c1d811b5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use File::Basename qw(dirname);
use lib dirname(dirname(__FILE__));
use Test::DH;
use File::Path qw(remove_tree make_path);
use Debian::Debhelper::Dh_Lib qw(!dirname);
plan(tests => 1);
each_compat_subtest {
my ($compat) = @_;
# #866570 - leading slashes must *not* pull things from the root FS.
make_path('bin');
create_empty_file('bin/grep-i-licious');
ok(run_dh_tool('dh_install', '/bin/grep*'));
ok(-e "debian/debhelper/bin/grep-i-licious", "#866570 [${compat}]");
ok(!-e "debian/debhelper/bin/grep", "#866570 [${compat}]");
remove_tree('debian/debhelper', 'debian/tmp');
};
|