From 6673d188b949effa40b9206919cc50a37863c32d Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 27 Feb 2007 16:15:47 +0000 Subject: * 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. --- pactest/tests/upgrade052.py | 2 +- pactest/tests/upgrade055.py | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 pactest/tests/upgrade055.py (limited to 'pactest/tests') 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") -- cgit v1.2.3-54-g00ecf