diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2007-10-09 20:27:08 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-09 20:27:08 +0200 |
commit | 3c4e98f7b56c17590965be9dbae25fe1915b75cb (patch) | |
tree | 3092be4c2678c053156b1d402dc5861c4977695c /pactest/tests/conflict006.py | |
parent | 7f3adc3936ca66d86ff18e06e77da66bcef843ff (diff) | |
download | pacman-3c4e98f7b56c17590965be9dbae25fe1915b75cb.tar.gz pacman-3c4e98f7b56c17590965be9dbae25fe1915b75cb.tar.xz |
Add two new pactests to check symlink behavior
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/tests/conflict006.py')
-rw-r--r-- | pactest/tests/conflict006.py | 17 |
1 files changed, 17 insertions, 0 deletions
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") + |