aboutsummaryrefslogtreecommitdiff
path: root/src/regex/test_regex_graph_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/test_regex_graph_api.c')
-rw-r--r--src/regex/test_regex_graph_api.c72
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);
}