mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-17 14:55:07 -05:00
844d82fad8
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>
22 lines
515 B
Python
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
|