Copyright years
[oweals/gnunet.git] / src / util / test_common_logging.c
index a940d3c07a526fa231b55c0a8ba75af51f3b7693..62acbfd1c9b499888627c96bdd6e1d49986d3d16 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2008 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2008 GNUnet e.V.
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -14,8 +14,8 @@
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 
 /**
  * @author Christian Grothoff
  */
 #include "platform.h"
-#include "gnunet_common.h"
+#include "gnunet_util_lib.h"
 
 static void
 my_log (void *ctx, enum GNUNET_ErrorType kind, const char *component,
-       const char *date, const char *msg)
+        const char *date, const char *msg)
 {
   unsigned int *c = ctx;
 
@@ -43,10 +43,8 @@ main (int argc, char *argv[])
   unsigned int failureCount = 0;
   unsigned int logs = 0;
 
-  if (0 != setenv ("GNUNET_FORCE_LOG", "", 1))
-    fprintf (stderr,
-            "Failed to setenv: %s\n",
-            strerror (errno));
+  if (0 != putenv ("GNUNET_FORCE_LOG="))
+    FPRINTF (stderr, "Failed to putenv: %s\n", strerror (errno));
   GNUNET_log_setup ("test-common-logging", "DEBUG", "/dev/null");
   GNUNET_logger_add (&my_log, &logs);
   GNUNET_logger_add (&my_log, &logs);
@@ -61,26 +59,23 @@ main (int argc, char *argv[])
   /* the last 6 calls should be merged (repated bulk messages!) */
   GNUNET_logger_remove (&my_log, &logs);
   if (logs != 4)
-    {
-      fprintf (stdout, "Expected 4 log calls, got %u\n", logs);
-      failureCount++;
-    }
+  {
+    FPRINTF (stdout, "Expected 4 log calls, got %u\n", logs);
+    failureCount++;
+  }
   GNUNET_break (0 ==
-               strcmp (_("ERROR"),
-                       GNUNET_error_type_to_string
-                       (GNUNET_ERROR_TYPE_ERROR)));
+                strcmp (_("ERROR"),
+                        GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_ERROR)));
   GNUNET_break (0 ==
-               strcmp (_("WARNING"),
-                       GNUNET_error_type_to_string
-                       (GNUNET_ERROR_TYPE_WARNING)));
+                strcmp (_("WARNING"),
+                        GNUNET_error_type_to_string
+                        (GNUNET_ERROR_TYPE_WARNING)));
   GNUNET_break (0 ==
-               strcmp (_("INFO"),
-                       GNUNET_error_type_to_string
-                       (GNUNET_ERROR_TYPE_INFO)));
+                strcmp (_("INFO"),
+                        GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_INFO)));
   GNUNET_break (0 ==
-               strcmp (_("DEBUG"),
-                       GNUNET_error_type_to_string
-                       (GNUNET_ERROR_TYPE_DEBUG)));
+                strcmp (_("DEBUG"),
+                        GNUNET_error_type_to_string (GNUNET_ERROR_TYPE_DEBUG)));
   GNUNET_log_setup ("test_common_logging", "WARNING", "/dev/null");
   logs = 0;
   GNUNET_logger_add (&my_log, &logs);
@@ -88,17 +83,17 @@ main (int argc, char *argv[])
   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Drop me...\n");
   GNUNET_logger_remove (&my_log, &logs);
   if (logs != 1)
-    {
-      fprintf (stdout, "Expected 1 log call, got %u\n", logs);
-      failureCount++;
-    }
+  {
+    FPRINTF (stdout, "Expected 1 log call, got %u\n", logs);
+    failureCount++;
+  }
 
   if (failureCount != 0)
-    {
-      fprintf (stdout, "%u TESTS FAILED!\n", failureCount);
-      return -1;
-    }
+  {
+    FPRINTF (stdout, "%u TESTS FAILED!\n", failureCount);
+    return -1;
+  }
   return 0;
-}                              /* end of main */
+}                               /* end of main */
 
 /* end of test_common_logging.c */