summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/upgrade016.py
blob: ddf57e8c09cc240643291c04157214ffcb6dead0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
self.description = "Install a package with an existing file (--force, new modified)"

p = pmpkg("dummy")
p.files = ["etc/dummy.conf*"]
p.backup = ["etc/dummy.conf"]
self.addpkg(p)

self.filesystem = ["etc/dummy.conf"]

self.args = "-U --force %s" % p.filename()

self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_EXIST=dummy")
self.addrule("!FILE_MODIFIED=etc/dummy.conf")
self.addrule("FILE_PACNEW=etc/dummy.conf")