|
|
148989 |
From 8f9b44617f2362d8d6dbb62c99a907c9018aa1f1 Mon Sep 17 00:00:00 2001
|
|
|
148989 |
From: Martin Pitt <mpitt@redhat.com>
|
|
|
148989 |
Date: Mon, 3 Jun 2019 15:01:28 +0200
|
|
|
148989 |
Subject: [PATCH] test: Disable /packet-channel/large
|
|
|
148989 |
|
|
|
148989 |
In brew for 7.7 (and only there) this test is flaky and often fails with
|
|
|
148989 |
|
|
|
148989 |
22 Invalid argument (<type 'exceptions.IOError'>, IOError(22, 'Invalid argument'), <traceback object at 0x7ffff7e15dd0>)
|
|
|
148989 |
|
|
|
148989 |
Disable this check until this gets debugged. It works fine on a RHEL 7.7
|
|
|
148989 |
VM mock in upstream CI.
|
|
|
148989 |
---
|
|
|
148989 |
src/bridge/test-packet-channel.c | 2 ++
|
|
|
148989 |
1 file changed, 2 insertions(+)
|
|
|
148989 |
|
|
|
148989 |
diff --git a/src/bridge/test-packet-channel.c b/src/bridge/test-packet-channel.c
|
|
|
148989 |
index 17b643ff8..d5f4552a3 100644
|
|
|
148989 |
--- a/src/bridge/test-packet-channel.c
|
|
|
148989 |
+++ b/src/bridge/test-packet-channel.c
|
|
|
148989 |
@@ -620,8 +620,10 @@ main (int argc,
|
|
|
148989 |
|
|
|
148989 |
g_test_add ("/packet-channel/echo", TestCase, NULL,
|
|
|
148989 |
setup_channel, test_echo, teardown);
|
|
|
148989 |
+ /*
|
|
|
148989 |
g_test_add ("/packet-channel/large", TestCase, NULL,
|
|
|
148989 |
setup_channel, test_large, teardown);
|
|
|
148989 |
+ */
|
|
|
148989 |
g_test_add ("/packet-channel/connect-in-progress",
|
|
|
148989 |
TestCase, &fixture_connect_in_progress,
|
|
|
148989 |
setup_channel, test_connect_in_progress, teardown);
|
|
|
148989 |
--
|
|
|
148989 |
2.21.0
|
|
|
148989 |
|