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/upgrade051.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/upgrade051.py')
-rw-r--r-- | pactest/tests/upgrade051.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pactest/tests/upgrade051.py b/pactest/tests/upgrade051.py new file mode 100644 index 00000000..e8c69eb9 --- /dev/null +++ b/pactest/tests/upgrade051.py @@ -0,0 +1,15 @@ +self.description = "Upgrade to a package that provides another package" + +lp = pmpkg("pkg1") +self.addpkg2db("local", lp) + +p = pmpkg("pkg2") +p.conflicts = ["pkg1"] +p.provides = ["pkg1"] +self.addpkg(p) + +self.args = "-U %s" % p.filename() + +self.addrule("PACMAN_RETCODE=0") +self.addrule("!PKG_EXIST=pkg1") +self.addrule("PKG_EXIST=pkg2") |