diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-15 19:04:27 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-15 19:04:27 +0000 |
commit | 1dc81514933078115eeca73dc3eb48e2fe444f06 (patch) | |
tree | 25b1db091ad4780c6ce8f96383cba454cc16d088 /pactest/tests/sync120.py | |
parent | 9ccd91701c7829ca3503eaeaceac601aee8dc03e (diff) | |
download | pacman-1dc81514933078115eeca73dc3eb48e2fe444f06.tar.xz |
Added pactest to repository, from Aurelien Foret:
http://aurelien.foret.free.fr/archlinux/pactest/
Diffstat (limited to 'pactest/tests/sync120.py')
-rw-r--r-- | pactest/tests/sync120.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pactest/tests/sync120.py b/pactest/tests/sync120.py new file mode 100644 index 00000000..b8fc6747 --- /dev/null +++ b/pactest/tests/sync120.py @@ -0,0 +1,21 @@ +self.description = "Sysupgrade of packages in 'IgnorePkg'" + +sp1 = pmpkg("pkg1", "1.0-2") +sp2 = pmpkg("pkg2", "1.0-2") + +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["ignorepkg"] = ["pkg2"] + +self.args = "-Su" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=pkg1|1.0-2") +self.addrule("!PKG_MODIFIED=pkg2") |