Fixup for test case in previous commit.
authorRyan Lortie <desrt@desrt.ca>
Fri, 29 Aug 2008 06:02:47 +0000 (06:02 +0000)
committerRyan Lortie <ryanl@src.gnome.org>
Fri, 29 Aug 2008 06:02:47 +0000 (06:02 +0000)
2008-08-28  Ryan Lortie  <desrt@desrt.ca>

        Fixup for test case in previous commit.

        * glib/tests/strfuncs.c: don't fail if we can't open the test data.
        This happens if $(builddir) != $(srcdir) (like when doing 'make
        distcheck').  Quick workaround for now until #549783 can be fixed.

svn path=/trunk/; revision=7415

ChangeLog
glib/tests/strfuncs.c

index 628e792..881295c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,14 @@
 2008-08-28  Ryan Lortie  <desrt@desrt.ca>
 
-       [REVERT] Bug 548612 – g_strstr_len() should use memmem when available
+       Fixup for test case in previous commit.
+
+       * glib/tests/strfuncs.c: don't fail if we can't open the test data.
+       This happens if $(builddir) != $(srcdir) (like when doing 'make
+       distcheck').  Quick workaround for now until #549783 can be fixed.
+
+2008-08-28  Ryan Lortie  <desrt@desrt.ca>
+
+       Bug 548612 – g_strstr_len() should use memmem when available
 
        * glib/gstrfuncs.c (g_strstr_len): fix off-by-one memory access error
        * glib/tests/strfuncs.c (test_bounds): add some new test cases that
index 30b58c4..8928ae6 100644 (file)
@@ -1062,6 +1062,11 @@ test_bounds (void)
    * side.
    */
   before = g_mapped_file_new ("4096-random-bytes", TRUE, NULL);
+
+  /* quick workaround until #549783 can be fixed */
+  if (before == NULL)
+    return;
+
   file = g_mapped_file_new ("4096-random-bytes", TRUE, NULL);
   after = g_mapped_file_new ("4096-random-bytes", TRUE, NULL);
   g_mapped_file_free (before);