summaryrefslogtreecommitdiff
path: root/tests/test-libglnx-testing.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-libglnx-testing.c')
-rw-r--r--tests/test-libglnx-testing.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test-libglnx-testing.c b/tests/test-libglnx-testing.c
index 8435113..449481d 100644
--- a/tests/test-libglnx-testing.c
+++ b/tests/test-libglnx-testing.c
@@ -47,6 +47,8 @@ test_assertions (void)
const char * const strv2[] = {"one", "two", NULL};
GStatBuf statbuf;
+ g_assert_true (null == NULL);
+ g_assert_false (null != NULL);
g_assert_null (null);
g_assert_nonnull (nonnull);
g_assert_cmpmem (null, 0, null, 0);
@@ -64,6 +66,8 @@ test_assertion_failures (void)
{
static const char * const assertion_failures[] =
{
+ "true",
+ "false",
"nonnull",
"null",
"mem_null_nonnull",