remove dependency on libextractor from testcase; fix #4901
authorChristian Grothoff <christian@grothoff.org>
Mon, 20 Feb 2017 12:54:25 +0000 (13:54 +0100)
committerChristian Grothoff <christian@grothoff.org>
Mon, 20 Feb 2017 12:54:25 +0000 (13:54 +0100)
src/util/Makefile.am
src/util/test_container_meta_data.c

index 931dd956803a32ebeb41634d5ddf46b426e7751a..ac125fb663d98d4fea91d1ea658c94044e5cdd41 100644 (file)
@@ -407,7 +407,7 @@ test_container_dll_LDADD = \
 test_container_meta_data_SOURCES = \
  test_container_meta_data.c
 test_container_meta_data_LDADD = \
- libgnunetutil.la -lextractor
+ libgnunetutil.la
 
 test_container_multihashmap_SOURCES = \
  test_container_multihashmap.c
index d84935a1e0dfdd0ce578771ccd66d622109e8c3d..cd23674a391d4bf342f2c2599ad3f8a8ef8dae57 100644 (file)
 #include "platform.h"
 #include "gnunet_util_lib.h"
 
-#if HAVE_EXTRACTOR_H
-
 #define ABORT(m) { fprintf(stderr, "Error at %s:%d\n", __FILE__, __LINE__); if (m != NULL) GNUNET_CONTAINER_meta_data_destroy(m); return 1; }
 
+
 static int
 testMeta (int i)
 {
@@ -106,10 +105,15 @@ testMeta (int i)
     ABORT (m);
   for (j = 0; j < i; j++)
   {
-    GNUNET_snprintf (val, sizeof (val), "%s.%d",
-                     "A teststring that should compress well.", j);
+    GNUNET_snprintf (val,
+                     sizeof (val),
+                     "%s.%d",
+                     "A teststring that should compress well.",
+                     j);
     if (GNUNET_OK !=
-        GNUNET_CONTAINER_meta_data_delete (m, EXTRACTOR_METATYPE_UNKNOWN, val,
+        GNUNET_CONTAINER_meta_data_delete (m,
+                                           EXTRACTOR_METATYPE_UNKNOWN,
+                                           val,
                                            strlen (val) + 1))
     {
       ABORT (m);
@@ -121,7 +125,8 @@ testMeta (int i)
   return 0;
 }
 
-int
+
+static int
 testMetaMore (int i)
 {
   struct GNUNET_CONTAINER_MetaData *meta;
@@ -135,7 +140,7 @@ testMetaMore (int i)
   {
     GNUNET_snprintf (txt, 128, "%u -- %u\n", i, q);
     GNUNET_CONTAINER_meta_data_insert (meta, "<test>",
-                                       q % EXTRACTOR_metatype_get_max (),
+                                       q % 42 /* EXTRACTOR_metatype_get_max () */,
                                        EXTRACTOR_METAFORMAT_UTF8, "text/plain",
                                        txt, strlen (txt) + 1);
   }
@@ -153,6 +158,7 @@ testMetaMore (int i)
   return 0;
 }
 
+
 static int
 testMetaLink ()
 {
@@ -188,7 +194,8 @@ testMetaLink ()
   return 0;
 }
 
-int
+
+static int
 check ()
 {
   struct GNUNET_CONTAINER_MetaData *meta;
@@ -345,16 +352,5 @@ main (int argc, char *argv[])
   return 0;
 }
 
-#else
-
-int
-main (int argc, char *argv[])
-{
-  fprintf (stderr,
-           "GNU libextractor not found, skipping test.\n");
-  return 0;
-}
-
-#endif
 
 /* end of test_container_meta_data.c */