shared/tests: add nmtst_g_source_nop() helper

(cherry picked from commit ca2b79d9aa)
This commit is contained in:
Thomas Haller 2020-11-02 12:55:06 +01:00
parent 4d572bea7e
commit ddb69b211c
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -1130,6 +1130,13 @@ nmtst_g_source_assert_not_called(gpointer user_data)
return G_SOURCE_CONTINUE;
}
static inline gboolean
nmtst_g_source_nop(gpointer user_data)
{
g_assert(!user_data);
return G_SOURCE_CONTINUE;
}
static inline gboolean
nmtst_g_source_set_boolean_true(gpointer user_data)
{