41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
From ef6054cc51d7a847e1d34b74b28b76fd1c1bb6da Mon Sep 17 00:00:00 2001
|
|
Message-Id: <ef6054cc51d7a847e1d34b74b28b76fd1c1bb6da@dist-git>
|
|
From: John Ferlan <jferlan@redhat.com>
|
|
Date: Mon, 1 Jul 2019 17:08:06 +0200
|
|
Subject: [PATCH] tests: Use correct function name in error path
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Commit id 5eb61e6846 neglected to change the name in the wrong value
|
|
output to virCgroupGetPercpuStats from virCgroupGetMemoryUsage.
|
|
|
|
Signed-off-by: John Ferlan <jferlan@redhat.com>
|
|
(cherry picked from commit 4608af30f9f9a4089b530d85d9b11c2f88424a09)
|
|
|
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1689297
|
|
|
|
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
|
|
Message-Id: <e1e0e9efc289cf396e173031d787e45f416dc474.1561993100.git.phrdina@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
---
|
|
tests/vircgrouptest.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/vircgrouptest.c b/tests/vircgrouptest.c
|
|
index 7fde50b463..118b1bc246 100644
|
|
--- a/tests/vircgrouptest.c
|
|
+++ b/tests/vircgrouptest.c
|
|
@@ -757,7 +757,7 @@ static int testCgroupGetPercpuStats(const void *args ATTRIBUTE_UNUSED)
|
|
|
|
if (params[i].value.ul != expected[i]) {
|
|
fprintf(stderr,
|
|
- "Wrong value from virCgroupGetMemoryUsage at %zu (expected %llu)\n",
|
|
+ "Wrong value from virCgroupGetPercpuStats at %zu (expected %llu)\n",
|
|
i, params[i].value.ul);
|
|
goto cleanup;
|
|
}
|
|
--
|
|
2.22.0
|
|
|