33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
From f2162c30155eb0d9f7475f583856a2675ad2c881 Mon Sep 17 00:00:00 2001
|
|
From: Sumit Bose <sbose@redhat.com>
|
|
Date: Fri, 3 Jul 2020 17:18:13 +0200
|
|
Subject: [PATCH] Fix for ini-config test issue
|
|
|
|
Recently I came across some issues with the ini-config tests where the
|
|
test run into a deadlock and didn't finish. It looks it happens
|
|
somewhere in the glib inotify code and might be a timing issues because
|
|
I never saw the issue when running the tests with strace.
|
|
|
|
To get around the issue I added REALM_INI_NO_WATCH to not use the
|
|
inotify code for testing.
|
|
---
|
|
tests/test-ini-config.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/test-ini-config.c b/tests/test-ini-config.c
|
|
index 7799e13..854df88 100644
|
|
--- a/tests/test-ini-config.c
|
|
+++ b/tests/test-ini-config.c
|
|
@@ -29,7 +29,7 @@ static void
|
|
setup (Test *test,
|
|
gconstpointer unused)
|
|
{
|
|
- test->config = realm_ini_config_new (REALM_INI_LINE_CONTINUATIONS);
|
|
+ test->config = realm_ini_config_new (REALM_INI_NO_WATCH | REALM_INI_LINE_CONTINUATIONS);
|
|
}
|
|
|
|
static void
|
|
--
|
|
2.27.0
|
|
|