aboutsummaryrefslogtreecommitdiff
path: root/src/regex/test_regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/test_regex.c')
-rw-r--r--src/regex/test_regex.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/regex/test_regex.c b/src/regex/test_regex.c
new file mode 100644
index 000000000..288dc28e6
--- /dev/null
+++ b/src/regex/test_regex.c
@@ -0,0 +1,56 @@
1/*
2 This file is part of GNUnet
3 (C) 2012 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20/**
21 * @file regex/test_regex.c
22 * @brief test for regex.c
23 * @author Maximilian Szengel
24 */
25#include "platform.h"
26#include "gnunet_regex_lib.h"
27
28static int err = 0;
29
30int
31main (int argc, char *argv[])
32{
33 GNUNET_log_setup ("test-regex",
34#if VERBOSE
35 "DEBUG",
36#else
37 "WARNING",
38#endif
39 NULL);
40
41 struct GNUNET_REGEX_Nfa *nfa;
42 char *regex;
43
44 regex = "a\\*b(c|d)+c*(a(b|c)d)+";
45 nfa = GNUNET_REGEX_construct_nfa (regex, strlen (regex));
46
47 if (nfa)
48 {
49 GNUNET_REGEX_save_nfa_graph (nfa, "nfa_graph.dot");
50 GNUNET_REGEX_destroy_nfa (nfa);
51 }
52 else
53 err = 1;
54
55 return err;
56}