blob: dcef7d03664e00e65e72b588bca5caf1ef4edebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/perl
# test from bugs #12696, #11885
#
# b requires b-sub
# a-sup requires a
# a conflicts with b, b conflicts with a
use strict;
use lib '.', 't';
use helper;
use urpm::util;
use Test::More 'no_plan';
need_root_and_prepare();
my $name = 'handle-conflict-deps';
urpmi_addmedia("$name $::pwd/media/$name");
urpmi('--auto a-sup');
check_installed_names('a', 'a-sup');
urpmi('--auto b');
check_installed_names('b', 'b-sub');
|