diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-06-20 09:02:43 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-06-20 09:02:43 +0000 |
commit | 566b7539fcaf9c455da665cb641016d2cfbb1b47 (patch) | |
tree | eb12baa08d99313d6da7eb8c1be17c5e447f1586 /src/regex/test_regex_graph_api.c | |
parent | de9409f80dbfc5cc61a28316b271600e9da95cdc (diff) |
renaming symbols from libgnunetregextest to have the prefix REGEX_TEST
Diffstat (limited to 'src/regex/test_regex_graph_api.c')
-rw-r--r-- | src/regex/test_regex_graph_api.c | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/src/regex/test_regex_graph_api.c b/src/regex/test_regex_graph_api.c index a0d44fb2f9..cc4370c851 100644 --- a/src/regex/test_regex_graph_api.c +++ b/src/regex/test_regex_graph_api.c @@ -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); } |