summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/fileconflict024.py
blob: 1dcb5adeb5798626136684dce36063d64e5309ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
self.description = "Filesystem conflict on upgrade with symlinks"

self.filesystem = ["share", "usr/lib/", "lib -> usr/lib/"]

lp1 = pmpkg("foo", "1-1")
lp1.files = ["lib/"]
self.addpkg2db("local", lp1)

sp1 = pmpkg("foo", "1-2")
# share/ causes the file order to change upon path resolution
sp1.files = ["lib/", "share"]
self.addpkg2db("sync", sp1)

self.args = "-S %s" % sp1.name

self.addrule("PACMAN_RETCODE=1")
self.addrule("PKG_EXIST=foo|1-1")

self.expectfailure = True