aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-06-06 01:58:21 -0400
committerMike Frysinger <vapier@gentoo.org>2015-06-06 01:58:21 -0400
commit432dc6f0189116a0b3aece01ac013b1bee3ce778 (patch)
tree0dc9243e2c94eb820ae538a290dcff8c4b9927d2 /qcheck.c
parentcache: optimize the common case slightly (diff)
downloadportage-utils-432dc6f0189116a0b3aece01ac013b1bee3ce778.tar.gz
portage-utils-432dc6f0189116a0b3aece01ac013b1bee3ce778.tar.bz2
portage-utils-432dc6f0189116a0b3aece01ac013b1bee3ce778.zip
Revert "tests: qcheck: tweak some tests output"
This reverts commit 0c7050208c110faac5dd54a452ed60a7a40eae07. Trying to get stable output with multiple packages was getting to be too much of a pain, and sorting the output arbitrarily didn't feel correct either. Bite the bullet and have qcheck sort its walking of the vdb. URL: https://bugs.gentoo.org/549934 Reported-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'qcheck.c')
-rw-r--r--qcheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qcheck.c b/qcheck.c
index 75dbf6d..6ad5f85 100644
--- a/qcheck.c
+++ b/qcheck.c
@@ -399,7 +399,7 @@ int qcheck_main(int argc, char **argv)
if ((argc == optind) && !state.search_all)
qcheck_usage(EXIT_FAILURE);
- ret = q_vdb_foreach_pkg(qcheck_cb, &state, NULL);
+ ret = q_vdb_foreach_pkg_sorted(qcheck_cb, &state);
xarrayfree(regex_arr);
return ret;
}