59eb7ad892
CVE-2017-15038: 9p: information disclosure when reading extended attributes (bz #1499111) CVE-2017-15268: potential memory exhaustion via websock connection to VNC (bz #1496882)
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From: "Daniel P. Berrange" <berrange@redhat.com>
|
|
Date: Fri, 21 Jul 2017 12:47:39 +0100
|
|
Subject: [PATCH] io: fix temp directory used by test-io-channel-tls test
|
|
|
|
The test-io-channel-tls test was mistakenly using two of the
|
|
same directories as test-crypto-tlssession. This causes a
|
|
sporadic failure when using make -j$BIGNUM.
|
|
|
|
Reported-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
|
|
---
|
|
tests/test-io-channel-tls.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tests/test-io-channel-tls.c b/tests/test-io-channel-tls.c
|
|
index e7c80f46cf..a210d01ba5 100644
|
|
--- a/tests/test-io-channel-tls.c
|
|
+++ b/tests/test-io-channel-tls.c
|
|
@@ -127,8 +127,8 @@ static void test_io_channel_tls(const void *opaque)
|
|
/* We'll use this for our fake client-server connection */
|
|
g_assert(socketpair(AF_UNIX, SOCK_STREAM, 0, channel) == 0);
|
|
|
|
-#define CLIENT_CERT_DIR "tests/test-crypto-tlssession-client/"
|
|
-#define SERVER_CERT_DIR "tests/test-crypto-tlssession-server/"
|
|
+#define CLIENT_CERT_DIR "tests/test-io-channel-tls-client/"
|
|
+#define SERVER_CERT_DIR "tests/test-io-channel-tls-server/"
|
|
mkdir(CLIENT_CERT_DIR, 0700);
|
|
mkdir(SERVER_CERT_DIR, 0700);
|
|
|