-improve UDP logging
[oweals/gnunet.git] / src / regex / test_regex_graph_api.c
index a0d44fb2f904cdbee31d367275acefd4d80c28f9..52c2e74d7b6763a593613ee385797d791267602f 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet
-     (C) 2012 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2012 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -74,7 +74,7 @@ int
 main (int argc, char *argv[])
 {
   int error;
-  struct REGEX_ITERNAL_Automaton *a;
+  struct REGEX_INTERNAL_Automaton *a;
   unsigned int i;
   const char *filename = "test_graph.dot";
 
@@ -98,58 +98,58 @@ main (int argc, char *argv[])
   for (i = 0; i < 12; i++)
   {
     /* Check NFA graph creation */
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename, REGEX_ITERNAL_GRAPH_DEFAULT);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename, REGEX_TEST_GRAPH_DEFAULT);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_VERBOSE);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_VERBOSE);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_COLORING);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_COLORING);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_VERBOSE |
-                                       REGEX_ITERNAL_GRAPH_COLORING);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_VERBOSE |
+                                       REGEX_TEST_GRAPH_COLORING);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
 
     /* Check DFA graph creation */
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
-    REGEX_ITERNAL_automaton_save_graph (a, filename, REGEX_ITERNAL_GRAPH_DEFAULT);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
+    REGEX_TEST_automaton_save_graph (a, filename, REGEX_TEST_GRAPH_DEFAULT);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_VERBOSE);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_VERBOSE);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_COLORING);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_COLORING);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
 
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 4);
-    REGEX_ITERNAL_automaton_save_graph (a, filename, REGEX_ITERNAL_GRAPH_DEFAULT);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 4);
+    REGEX_TEST_automaton_save_graph (a, filename, REGEX_TEST_GRAPH_DEFAULT);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
   }