summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/upgrade013.py
blob: 5a327599c8b2c370f0db985fe0838a85ad925694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
self.description = "Install two packages with a conflicting file"

p1 = pmpkg("dummy")
p1.files = ["bin/dummy",
            "usr/man/man1/dummy.1",
            "usr/common"]

p2 = pmpkg("foobar")
p2.files = ["bin/foobar",
            "usr/man/man1/foobar.1",
            "usr/common"]

for p in p1, p2:
	self.addpkg(p)

self.args = "-U %s" % " ".join([p.filename() for p in p1, p2])

self.addrule("PACMAN_RETCODE=1")
self.addrule("!PKG_EXIST=dummy")
self.addrule("!PKG_EXIST=foobar")