mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-14 13:25:09 -05:00
c51b9ca0ad
This removes the last usages of this rule that aren't explicitly looking at real output from pacman. Notably, these tests depended on one particular debug logger not ever being changed, which is too fragile, not to mention doesn't work at all with --nolog. Signed-off-by: Dan McGee <dan@archlinux.org>
14 lines
316 B
Python
14 lines
316 B
Python
self.description = "Make sure ldconfig runs on an upgrade operation"
|
|
|
|
lp = pmpkg("dummy")
|
|
self.addpkg2db("local", lp)
|
|
|
|
p = pmpkg("dummy", "1.0-2")
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_VERSION=dummy|1.0-2")
|
|
self.addrule("FILE_EXIST=/etc/ld.so.cache")
|