tests: Drop dirname argument from testQemuCapsIterate()

As evidenced by all existing callers, the only directory it makes
sense to use is TEST_QEMU_CAPS_PATH, so let's just bake that into
the function.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Andrea Bolognani
2019-04-16 12:33:14 +02:00
parent 3fe020a038
commit 45dff4bbfa
4 changed files with 6 additions and 8 deletions

View File

@@ -903,8 +903,7 @@ testQemuGetLatestCaps(void)
int
testQemuCapsIterate(const char *dirname,
const char *suffix,
testQemuCapsIterate(const char *suffix,
testQemuCapsIterateCallback callback,
void *opaque)
{
@@ -916,10 +915,10 @@ testQemuCapsIterate(const char *dirname,
if (!callback)
return 0;
if (virDirOpen(&dir, dirname) < 0)
if (virDirOpen(&dir, TEST_QEMU_CAPS_PATH) < 0)
goto cleanup;
while ((rc = virDirRead(dir, &ent, dirname) > 0)) {
while ((rc = virDirRead(dir, &ent, TEST_QEMU_CAPS_PATH) > 0)) {
char *tmp = ent->d_name;
char *base = NULL;
char *archName = NULL;