Merge branch 'socket-reuse-tests' into 'main'

tests: Temporarily disable socket test due to a kernel bug

See merge request GNOME/glib!3225
This commit is contained in:
Philip Withnall 2023-01-25 12:49:42 +00:00
commit 6facddac02

View File

@ -1621,6 +1621,10 @@ test_source_postmortem (void)
static void
test_reuse_tcp (void)
{
#if 1
g_test_skip ("Test is currently failing due to a kernel bug; see https://gitlab.gnome.org/GNOME/glib/-/issues/2879");
return;
#else
GSocket *sock1, *sock2;
GError *error = NULL;
GInetAddress *iaddr;
@ -1657,6 +1661,7 @@ test_reuse_tcp (void)
g_object_unref (sock1);
g_object_unref (sock2);
#endif
}
static void