diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-27 17:15:47 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-27 17:15:47 +0100 |
commit | 6673d188b949effa40b9206919cc50a37863c32d (patch) | |
tree | 9ec609d90a3caea045d2d6c14b7a2a46fb2df2f4 /pactest/tests | |
parent | b8c8b2ec5573a795cdd1453dbc265b034953d2fa (diff) | |
download | pacman-6673d188b949effa40b9206919cc50a37863c32d.tar.gz pacman-6673d188b949effa40b9206919cc50a37863c32d.tar.xz |
* Updated description of test upgrade052.
* Added the actual "Nagy's bug" as upgrade055.py.
* Updated the Makefile to distribute the pactest readme.
* Removed COPYING from the pactest directory- see COPYING at the root for the
same license.
Diffstat (limited to 'pactest/tests')
-rw-r--r-- | pactest/tests/upgrade052.py | 2 | ||||
-rw-r--r-- | pactest/tests/upgrade055.py | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/pactest/tests/upgrade052.py b/pactest/tests/upgrade052.py index 98ffe3aa..5579edb1 100644 --- a/pactest/tests/upgrade052.py +++ b/pactest/tests/upgrade052.py @@ -1,4 +1,4 @@ -self.description = "Nagy's bug (I think) -- in progress" +self.description = "Upgrade to a package that provides less than before" lp1 = pmpkg("pkg1") lp1.depends = ["imaginary"] diff --git a/pactest/tests/upgrade055.py b/pactest/tests/upgrade055.py new file mode 100644 index 00000000..c70c08da --- /dev/null +++ b/pactest/tests/upgrade055.py @@ -0,0 +1,26 @@ +self.description = "Upgrade a package that provides one of two imaginary packages" + +lp1 = pmpkg("pkg1") +lp1.depends = ["imaginary", "imaginary2"] +self.addpkg2db("local", lp1) + +lp2 = pmpkg("pkg2") +lp2.provides = ["imaginary"] +lp2.requiredby = [ "pkg1" ] +self.addpkg2db("local", lp2) + +lp3 = pmpkg("pkg3") +lp3.provides = ["imaginary2"] +lp3.requiredby = [ "pkg1" ] +self.addpkg2db("local", lp3) + +p = pmpkg("pkg2", "1.0-2") +p.provides = ["imaginary"] +self.addpkg(p) + +self.args = "-U %s" % p.filename() + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=pkg1") +self.addrule("PKG_VERSION=pkg2|1.0-2") +self.addrule("PKG_EXIST=pkg3") |