diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2011-11-03 10:52:44 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2011-11-03 10:52:44 +0000 |
commit | b0a510ad2a3d11150ce7f10c76d333b3f18022b6 (patch) | |
tree | 04592a4cc51d70852b0ac769ae92d76b9cc90b7d /tests/virnetsockettest.c | |
parent | 745c3e7981a5e58042ebc6bdf0ada4f6884933c9 (diff) | |
download | libvirt-b0a510ad2a3d11150ce7f10c76d333b3f18022b6.tar.gz |
Remove translations in socket test case
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
Diffstat (limited to 'tests/virnetsockettest.c')
-rw-r--r-- | tests/virnetsockettest.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/tests/virnetsockettest.c b/tests/virnetsockettest.c index a76e5cccf1..16713e8304 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; |