diff options
author | Xavier Chantry <shiningxc@gmail.com> | 2009-07-19 16:54:12 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-07-20 17:13:42 +0200 |
commit | 45f90de0eb9c33eee0deb63bae9aabe5988b8733 (patch) | |
tree | 143ca05d6860abb0c1a38be5ca882495f171da49 /pactest/tests/fileconflict007.py | |
parent | bfd6817112b34b552e9139bdc582d048bcba38b9 (diff) | |
download | pacman-45f90de0eb9c33eee0deb63bae9aabe5988b8733.tar.gz pacman-45f90de0eb9c33eee0deb63bae9aabe5988b8733.tar.xz |
Fix klibc conflict case.
A package can now replace symdir->dir by dir without fileconflicts.
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/tests/fileconflict007.py')
-rw-r--r-- | pactest/tests/fileconflict007.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pactest/tests/fileconflict007.py b/pactest/tests/fileconflict007.py new file mode 100644 index 00000000..7e6d85ef --- /dev/null +++ b/pactest/tests/fileconflict007.py @@ -0,0 +1,17 @@ +self.description = "Fileconflict with symlinks (klibc case)" + +lp = pmpkg("pkg") +lp.files = ["dir/realdir/", + "dir/symdir -> realdir", + "dir/realdir/file"] +self.addpkg2db("local", lp) + +p = pmpkg("pkg", "1.0-2") +p.files = ["dir/symdir/file"] +self.addpkg(p) + +self.args = "-U %s" % p.filename() + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=pkg") +self.addrule("PKG_VERSION=pkg|1.0-2") |