summaryrefslogtreecommitdiff
path: root/test/integration/test-ubuntu-bug-1876495-pkgnames-virtual
Commit message (Collapse)AuthorAgeFilesLines
* test: fixup for hash table size increase (changed output order)Julian Andres Klode2020-12-151-7/+6
|
* pkgnames: Do not exclude virtual packages with --all-namesJulian Andres Klode2020-10-261-1/+2
| | | | | | | | | We accidentally excluded virtual packages by excluding every group that had a package, but where the package had no versions. Rewrite the code so the lookup consistently uses VersionList() instead of FirstVersion and FindPkg("any") - those are all the same, and this is easier to read.
* pkgnames: Correctly set the default for AllNames to falseJulian Andres Klode2020-10-261-0/+23
We passed "false" instead of false, and that apparently got cast to bool, because it's a non-null pointer. LP: #1876495