pactest: conflict between directory and a file
Note failure to detect a conflict between a directory in one package and a file in the other when the directory is not currently on the filesystem. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
e3772f7654
commit
6f47dfc920
1 changed files with 17 additions and 0 deletions
17
test/pacman/tests/fileconflict015.py
Normal file
17
test/pacman/tests/fileconflict015.py
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
self.description = "conflict between a directory and a file"
|
||||||
|
|
||||||
|
p1 = pmpkg("pkg1")
|
||||||
|
p1.files = ["foo/"]
|
||||||
|
self.addpkg2db("sync", p1)
|
||||||
|
|
||||||
|
p2 = pmpkg("pkg2")
|
||||||
|
p2.files = ["foo"]
|
||||||
|
self.addpkg2db("sync", p2)
|
||||||
|
|
||||||
|
self.args = "-S pkg1 pkg2"
|
||||||
|
|
||||||
|
self.addrule("PACMAN_RETCODE=1")
|
||||||
|
self.addrule("!PKG_EXIST=pkg1")
|
||||||
|
self.addrule("!PKG_EXIST=pkg2")
|
||||||
|
|
||||||
|
self.expectfailure = True
|
Loading…
Add table
Reference in a new issue