summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-05-27 22:13:33 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-05-27 22:13:33 -0400
commitde1c0722b92d101171f7c2ce7eb199727528dff1 (patch)
tree84b7b5205aca83b7d53ccdf20b0220e532466620
parent84fd73b2fa098ff63656e7cbe1ef211f948123c2 (diff)
mapping-test: Add debug spewHEADmaster
This might help figuring out why the test is failing in continuous.
-rw-r--r--tests/mapping-test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/mapping-test.c b/tests/mapping-test.c
index b3e97781d..8975bd438 100644
--- a/tests/mapping-test.c
+++ b/tests/mapping-test.c
@@ -143,6 +143,7 @@ test_mapping (void)
map = map_or_die (filename, TRUE);
g_assert (g_mapped_file_get_length (map) == 3);
g_mapped_file_free (map);
+ g_message ("test_mapping: ok");
}
static void
@@ -173,6 +174,7 @@ test_private (void)
g_assert (strcmp (buffer, "ABC") == 0);
g_free (buffer);
+ g_message ("test_private: ok");
}
static void
@@ -251,6 +253,8 @@ test_child_private (gchar *argv0)
g_assert (len == 3);
g_assert (strcmp (buffer, "ABC") == 0);
g_free (buffer);
+
+ g_message ("test_child_private: ok");
}
static int