From: "Daniel P. Berrange" <berra...@redhat.com>

The test case errors should not be translated since they're only
targetted at developers, not users.

* tests/virnetsockettest.c: Remove error reporting with translations
---
 tests/virnetsockettest.c |   14 ++++----------
 1 files changed, 4 insertions(+), 10 deletions(-)

Pushed as a build breaker fix (make syntax-check fails)

diff --git a/tests/virnetsockettest.c b/tests/virnetsockettest.c
index a76e5cc..16713e8 100644
--- a/tests/virnetsockettest.c
+++ b/tests/virnetsockettest.c
@@ -207,14 +207,11 @@ static int testSocketUNIXAccept(const void *data 
ATTRIBUTE_UNUSED)
 
     tmpdir = mkdtemp(template);
     if (tmpdir == NULL) {
-        virReportSystemError(errno, "%s",
-                             _("Failed to create temporary directory"));
+        VIR_WARN("Failed to create temporary directory");
         goto cleanup;
     }
-    if (virAsprintf(&path, "%s/test.sock", tmpdir) < 0) {
-        virReportOOMError();
+    if (virAsprintf(&path, "%s/test.sock", tmpdir) < 0)
         goto cleanup;
-    }
 
     if (virNetSocketNewListenUNIX(path, 0700, -1, getgid(), &lsock) < 0)
         goto cleanup;
@@ -260,14 +257,11 @@ static int testSocketUNIXAddrs(const void *data 
ATTRIBUTE_UNUSED)
 
     tmpdir = mkdtemp(template);
     if (tmpdir == NULL) {
-        virReportSystemError(errno, "%s",
-                             _("Failed to create temporary directory"));
+        VIR_WARN("Failed to create temporary directory");
         goto cleanup;
     }
-    if (virAsprintf(&path, "%s/test.sock", tmpdir) < 0) {
-        virReportOOMError();
+    if (virAsprintf(&path, "%s/test.sock", tmpdir) < 0)
         goto cleanup;
-    }
 
     if (virNetSocketNewListenUNIX(path, 0700, -1, getgid(), &lsock) < 0)
         goto cleanup;
-- 
1.7.6.4

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to