summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2016-12-05 13:08:39 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2016-12-06 14:50:08 +0000
commit66da1199f0e6bff78b94d54b619c1bc2eed009c6 (patch)
tree9b6fc18f2ae790b3a2e0cad53a4c9ead6c808c50
parent555f1fb03d8dd56b36abe46355021665ee558cef (diff)
downloadostree-66da1199f0e6bff78b94d54b619c1bc2eed009c6.tar.gz
tests/keyfile-utils: Drop tests covering preconditions
The spam in stderr was bothering me, and further at some eventual point in the future we want to annotate the functions with `__attribute__((nonnull))` which would then cause tests like these to become undefined behavior. The coverage of this isn't worth the log spam basically. Closes: #611 Approved by: jlebon
-rw-r--r--tests/test-keyfile-utils.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/test-keyfile-utils.c b/tests/test-keyfile-utils.c
index 8fd59163..376b0e82 100644
--- a/tests/test-keyfile-utils.c
+++ b/tests/test-keyfile-utils.c
@@ -34,37 +34,6 @@ test_get_boolean_with_default (void)
g_autoptr(GError) error = NULL;
gboolean out = FALSE;
- GLogLevelFlags always_fatal_mask;
-
- /* Avoid that g_return_val_if_fail causes the test to fail. */
- always_fatal_mask = g_log_set_always_fatal (0);
-
-
- g_assert_false (ot_keyfile_get_boolean_with_default (NULL,
- "section",
- "a_boolean_true",
- FALSE,
- &out,
- &error));
- g_clear_error (&error);
- g_assert_false (ot_keyfile_get_boolean_with_default (g_keyfile,
- NULL,
- "a_boolean_true",
- FALSE,
- &out,
- &error));
- g_clear_error (&error);
- g_assert_false (ot_keyfile_get_boolean_with_default (g_keyfile,
- "section",
- NULL,
- FALSE,
- &out,
- &error));
- g_clear_error (&error);
-
- /* Restore the old mask. */
- g_log_set_always_fatal (always_fatal_mask);
-
g_assert (ot_keyfile_get_boolean_with_default (g_keyfile,
"section",
"a_boolean_true",