From 3c4e98f7b56c17590965be9dbae25fe1915b75cb Mon Sep 17 00:00:00 2001 From: Nagy Gabor Date: Tue, 9 Oct 2007 13:27:08 -0500 Subject: Add two new pactests to check symlink behavior Signed-off-by: Dan McGee --- pactest/tests/conflict006.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pactest/tests/conflict006.py (limited to 'pactest/tests/conflict006.py') diff --git a/pactest/tests/conflict006.py b/pactest/tests/conflict006.py new file mode 100644 index 00000000..43899f04 --- /dev/null +++ b/pactest/tests/conflict006.py @@ -0,0 +1,17 @@ +self.description = "Fileconflict with symlinks (2)" + +p1 = pmpkg("pkg1") +p1.files = ["dir/realdir/file", + "dir/symdir -> realdir"] +self.addpkg(p1) + +p2 = pmpkg("pkg2") +p2.files = ["dir/symdir/file"] +self.addpkg(p2) + +self.args = "-A %s" % " ".join([p.filename() for p in p1, p2]) + +self.addrule("PACMAN_RETCODE=1") +self.addrule("!PKG_EXIST=pkg1") +self.addrule("!PKG_EXIST=pkg2") + -- cgit v1.2.3-54-g00ecf