1# test dup with multiversion packages
2#
3# part 1: simple update
4repo system 0 testtags <inline>
5#>=Pkg: a 1 1 i686
6repo available 0 testtags <inline>
7#>=Pkg: a 2 1 i686
8system i686 * system
9
10job multiversion name a
11job distupgrade all packages
12# a-1-1 is treated as orphaned and stays behind
13result transaction,problems <inline>
14#>install a-2-1.i686@available
15
16nextjob
17
18job multiversion name a
19job distupgrade repo available
20# a-1-1 is treated as orphaned and stays behind
21result transaction,problems <inline>
22#>install a-2-1.i686@available
23
24
25### same with keeporphans
26
27nextjob
28
29solverflags keeporphans
30job multiversion name a
31job distupgrade all packages
32# a-1-1 is treated as orphaned and stays behind
33result transaction,problems <inline>
34#>install a-2-1.i686@available
35
36
37nextjob
38
39solverflags keeporphans
40job multiversion name a
41job distupgrade repo available
42# a-1-1 is treated as orphaned and stays behind
43result transaction,problems <inline>
44#>install a-2-1.i686@available
45
46
47### same with allowuninstall
48
49nextjob
50
51solverflags allowuninstall
52job multiversion name a
53job distupgrade all packages
54# a-1-1 is treated as orphaned and stays behind
55result transaction,problems <inline>
56#>install a-2-1.i686@available
57
58
59nextjob
60
61solverflags allowuninstall
62job multiversion name a
63job distupgrade repo available
64# a-1-1 is treated as orphaned and stays behind
65result transaction,problems <inline>
66#>install a-2-1.i686@available
67
68
69### same with allowuninstall and keeporphans
70
71nextjob
72
73solverflags allowuninstall keeporphans
74job multiversion name a
75job distupgrade all packages
76# a-1-1 is treated as orphaned and stays behind
77result transaction,problems <inline>
78#>install a-2-1.i686@available
79
80
81nextjob
82
83solverflags allowuninstall keeporphans
84job multiversion name a
85job distupgrade repo available
86# a-1-1 is treated as orphaned and stays behind
87result transaction,problems <inline>
88#>install a-2-1.i686@available
89
90
91
92