From 0eb009d273e8b2314bcdbe41489eb0111666af11 Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Mon, 23 Aug 2010 16:48:33 +0200 Subject: [PATCH] nodeinfotest: Print libvirt error on failure If linuxNodeInfoCPUPopulate() fails, the test would just print "FAILED" which is not very informative. It's better to print the real error. --- tests/nodeinfotest.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/nodeinfotest.c b/tests/nodeinfotest.c index d3c500d989..d256c53233 100644 --- a/tests/nodeinfotest.c +++ b/tests/nodeinfotest.c @@ -43,6 +43,12 @@ static int linuxTestCompareFiles(const char *cpuinfofile, const char *outputfile memset(&nodeinfo, 0, sizeof(nodeinfo)); if (linuxNodeInfoCPUPopulate(cpuinfo, &nodeinfo) < 0) { + if (virTestGetDebug()) { + virErrorPtr error = virSaveLastError(); + if (error && error->code != VIR_ERR_OK) + fprintf(stderr, "\n%s\n", error->message); + virFreeError(error); + } fclose(cpuinfo); return -1; } -- GitLab