diff options
author | Nathan Jones <nathanj@insightbb.com> | 2007-11-12 16:54:30 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-13 00:13:04 -0600 |
commit | ca262623fcec32952d4a59ac3003c82c94297ce1 (patch) | |
tree | af441062397affaba34b34a6582027bd0ce06fe3 /pactest | |
parent | 07243f74d1d4277a296c3eb23e876ed48c015e68 (diff) | |
download | pacman-ca262623fcec32952d4a59ac3003c82c94297ce1.tar.xz |
Add pactest for IgnoreGroup.
Also tell pactest to reset IgnoreGroup like it does for IgnorePkg.
Signed-off-by: Nathan Jones <nathanj@insightbb.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest')
-rwxr-xr-x | pactest/pmtest.py | 1 | ||||
-rw-r--r-- | pactest/tests/sync138.py | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/pactest/pmtest.py b/pactest/pmtest.py index 00dd3cbc..e0b3fd44 100755 --- a/pactest/pmtest.py +++ b/pactest/pmtest.py @@ -84,6 +84,7 @@ class pmtest: self.option = { "noupgrade": [], "ignorepkg": [], + "ignoregroup": [], "noextract": [] } diff --git a/pactest/tests/sync138.py b/pactest/tests/sync138.py new file mode 100644 index 00000000..410c7f07 --- /dev/null +++ b/pactest/tests/sync138.py @@ -0,0 +1,22 @@ +self.description = "Sysupgrade of packages in 'IgnoreGroup'" + +sp1 = pmpkg("pkg1", "1.0-2") +sp2 = pmpkg("pkg2", "1.0-2") +sp2.groups = ["grp"] + +for p in sp1, sp2: + self.addpkg2db("sync", p) + +lp1 = pmpkg("pkg1") +lp2 = pmpkg("pkg2") + +for p in lp1, lp2: + self.addpkg2db("local", p) + +self.option["ignoregroup"] = ["grp"] + +self.args = "-Su" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=pkg1|1.0-2") +self.addrule("!PKG_MODIFIED=pkg2") |