1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/test/pacman/tests/unresolvable001.py
Allan McRae 844d82fad8 Move pacman test suite
Move the test suite to test/pacman in order to make a logical
location for a future makepkg test suite.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
2010-06-02 13:14:51 -05:00

22 lines
515 B
Python

self.description = "An unresolvable dependency"
packageA1 = pmpkg("dep")
self.addpkg2db("local", packageA1)
packageA1up = pmpkg("dep", "2.0-1")
packageA1up.depends = ["fake"];
self.addpkg2db("sync", packageA1up)
packageA2up = pmpkg("package")
packageA2up.depends = ["dep"];
self.addpkg2db("sync", packageA2up)
self.args = "-S package dep --ask=32"
self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_EXIST=package")
self.addrule("PKG_EXIST=dep")
self.addrule("PKG_VERSION=dep|1.0-1")
self.expectfailure = True