mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
0bd6fb3bc2
This update causes query003 to fail before commit
4b8ada818e
. Hopefully the issue doesn't crop
up again but we might as well test for it.
Signed-off-by: Dan McGee <dan@archlinux.org>
13 lines
306 B
Python
13 lines
306 B
Python
self.description = "Search for package from a sync db"
|
|
|
|
sp = pmpkg("dummy")
|
|
sp.groups = ["group1", "group2"]
|
|
sp.files = ["bin/dummy",
|
|
"usr/man/man1/dummy.1"]
|
|
self.addpkg2db("sync", sp)
|
|
|
|
self.args = "-Ss %s" % sp.name
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PACMAN_OUTPUT=%s" % sp.name)
|