From 4a427dbc1bca50c516c41e4ae2cb0122c686f88d Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 12 Dec 2012 00:29:50 +1000 Subject: Add pactests for not detecting directory conflicts with upgrades Signed-off-by: Allan McRae --- test/pacman/tests/fileconflict021.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/pacman/tests/fileconflict021.py (limited to 'test/pacman/tests/fileconflict021.py') diff --git a/test/pacman/tests/fileconflict021.py b/test/pacman/tests/fileconflict021.py new file mode 100644 index 00000000..ccb70f25 --- /dev/null +++ b/test/pacman/tests/fileconflict021.py @@ -0,0 +1,18 @@ +self.description = "upgrade package overwriting existing unowned file with directory" + +lp1 = pmpkg("pkg1") +self.addpkg2db("local", lp1) + +self.filesystem = ["file"] + +p = pmpkg("pkg1", "1.0-2") +p.files = ["file/"] +self.addpkg2db("sync", p) + +self.args = "-S pkg1" + +self.addrule("PACMAN_RETCODE=1") +self.addrule("PKG_VERSION=pkg1|1.0-1") +self.addrule("!DIR_EXIST=file/") + +self.expectfailure = True -- cgit v1.2.3-24-g4f1b