mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-17 14:55:07 -05:00
Add pactest for 'any' architecture
Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
b53aa87ea9
commit
6e1b1aea59
16
pactest/tests/upgrade084.py
Normal file
16
pactest/tests/upgrade084.py
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
self.description = "Install a package ('any' architecture)"
|
||||||
|
|
||||||
|
p = pmpkg("dummy")
|
||||||
|
p.files = ["bin/dummy",
|
||||||
|
"usr/man/man1/dummy.1"]
|
||||||
|
p.arch = 'any'
|
||||||
|
self.addpkg(p)
|
||||||
|
|
||||||
|
self.option["Architecture"] = ['auto']
|
||||||
|
|
||||||
|
self.args = "-U %s" % p.filename()
|
||||||
|
|
||||||
|
self.addrule("PACMAN_RETCODE=0")
|
||||||
|
self.addrule("PKG_EXIST=dummy")
|
||||||
|
for f in p.files:
|
||||||
|
self.addrule("FILE_EXIST=%s" % f)
|
Loading…
Reference in New Issue
Block a user