1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

pactest: Provide a full filelist to the pactests that need it

It turns out when you set the filelist for a package to include
"usr/lib/foo" in the pactest suite, it thinks there is only the
file "usr/lib/foo" in there...  No "usr/" or "usr/lib/" directory.
This makes life difficult when testing code that scrolls through
a filelist looking for directory entries.

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2012-07-17 20:44:18 +10:00
parent 254329f6fb
commit 6860e2f703
2 changed files with 11 additions and 4 deletions

View File

@ -7,11 +7,15 @@ lp.files = ["dir/realdir/",
self.addpkg2db("local", lp)
p1 = pmpkg("pkg1")
p1.files = ["dir/realdir/file"]
p1.files = ["dir/",
"dir/realdir/",
"dir/realdir/file"]
self.addpkg(p1)
p2 = pmpkg("pkg2")
p2.files = ["dir/symdir/file"]
p2.files = ["dir/",
"dir/symdir/",
"dir/symdir/file"]
self.addpkg(p2)
self.args = "-U %s" % " ".join([p.filename() for p in p1, p2])

View File

@ -7,11 +7,14 @@ lp1.files = ["usr/",
self.addpkg2db("local", lp1)
p1 = pmpkg("pkg1")
p1.files = ["lib/foo"]
p1.files = ["lib/",
"lib/foo"]
self.addpkg2db("sync", p1)
p2 = pmpkg("pkg2")
p2.files = ["usr/lib/foo"]
p2.files = ["usr/",
"usr/lib/",
"usr/lib/foo"]
self.addpkg2db("sync", p2)
self.args = "-S pkg1 pkg2"