diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-27 01:34:07 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-27 01:34:07 +0000 |
commit | f2ade9ab0de9ca5e71835c9a20114702844090d6 (patch) | |
tree | f7020379ba00386fc15a24709fa1bec6b5a43f48 /pactest/tests/upgrade050.py | |
parent | cb311adeab04aa5a8780f48af450b5e20a00dedc (diff) | |
download | pacman-f2ade9ab0de9ca5e71835c9a20114702844090d6.tar.xz |
* Added 5 new upgrade tests, which check various things with depends,
provides, and conflicts.
- upgrade051 is known to fail- but we want to eventually make it work.
- upgrade052 is Nagy's bug as reported on the ML- I think. If it isn't,
let me know.
Diffstat (limited to 'pactest/tests/upgrade050.py')
-rw-r--r-- | pactest/tests/upgrade050.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pactest/tests/upgrade050.py b/pactest/tests/upgrade050.py new file mode 100644 index 00000000..f05b0b62 --- /dev/null +++ b/pactest/tests/upgrade050.py @@ -0,0 +1,15 @@ +self.description = "Upgrade package with a conflict == depend (not installed)" + +p1 = pmpkg("pkg1") +p1.conflicts = ["pkg2"] +p1.depends = ["pkg2"] +self.addpkg(p1) + +p2 = pmpkg("pkg2") +self.addpkg(p2) + +self.args = "-U %s" % " ".join([p.filename() for p in p1, p2]) + +self.addrule("PACMAN_RETCODE=1") +self.addrule("!PKG_EXIST=pkg1") +self.addrule("!PKG_EXIST=pkg2") |