diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2008-07-22 12:48:59 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-07-22 19:47:35 -0500 |
commit | 22722261cc5bd2276e657300ea7dcbcec5381970 (patch) | |
tree | 58d51d4470690efaf436a3cbe20f48ab26018ceb /pactest/tests | |
parent | 24783e6b6b6833678fec289ec89198db691b1b63 (diff) | |
download | pacman-22722261cc5bd2276e657300ea7dcbcec5381970.tar.xz |
New fileconflict004.py pactest
Thread: http://www.archlinux.org/pipermail/pacman-dev/2008-July/012465.html
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Diffstat (limited to 'pactest/tests')
-rw-r--r-- | pactest/tests/fileconflict004.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pactest/tests/fileconflict004.py b/pactest/tests/fileconflict004.py new file mode 100644 index 00000000..a5347ccd --- /dev/null +++ b/pactest/tests/fileconflict004.py @@ -0,0 +1,19 @@ +self.description = "dir->symlink change during package upgrade (no conflict)" + +p1 = pmpkg("pkg1", "1.0-1") +p1.files = ["test/", + "test/file"] +self.addpkg2db("local", p1) + +p2 = pmpkg("pkg1", "2.0-1") +p2.files = ["test2/", + "test2/file2", + "test -> test2"] +self.addpkg2db("sync", p2) + +self.args = "-S pkg1" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=pkg1") +self.addrule("PKG_VERSION=pkg1|2.0-1") +self.addrule("FILE_TYPE=test|link") |