1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-01-09 13:07:58 -05:00

New fileconflict004.py pactest

Thread: http://www.archlinux.org/pipermail/pacman-dev/2008-July/012465.html

Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
This commit is contained in:
Nagy Gabor 2008-07-22 12:48:59 +02:00 committed by Dan McGee
parent 24783e6b6b
commit 22722261cc

View File

@ -0,0 +1,19 @@
self.description = "dir->symlink change during package upgrade (no conflict)"
p1 = pmpkg("pkg1", "1.0-1")
p1.files = ["test/",
"test/file"]
self.addpkg2db("local", p1)
p2 = pmpkg("pkg1", "2.0-1")
p2.files = ["test2/",
"test2/file2",
"test -> test2"]
self.addpkg2db("sync", p2)
self.args = "-S pkg1"
self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_EXIST=pkg1")
self.addrule("PKG_VERSION=pkg1|2.0-1")
self.addrule("FILE_TYPE=test|link")