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/sync890.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/sync890.py')
-rw-r--r-- | pactest/tests/sync890.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pactest/tests/sync890.py b/pactest/tests/sync890.py new file mode 100644 index 00000000..0613128e --- /dev/null +++ b/pactest/tests/sync890.py @@ -0,0 +1,20 @@ +self.description = "conflict 'db vs targ'" + +sp = pmpkg("pkg3") + +self.addpkg2db("sync", sp) + +lp1 = pmpkg("pkg1") + +lp2 = pmpkg("pkg2") +lp2.conflicts = ["pkg3"] + +for p in lp1, lp2: + self.addpkg2db("local", p) + +self.args = "-S pkg3" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=pkg1") +self.addrule("!PKG_EXIST=pkg2") +self.addrule("PKG_EXIST=pkg3") |