* tests/test-dfa-match-aux.c (main): Specify RE_SYNTAX_EGREP, not
RE_SYNTAX_GREP, so tests can use ERE syntax rather than BRE.
+2020-11-01 Jim Meyering <meyering@fb.com>
+
+ test-dfa-match-aux.c: accept EREs, not BREs
+ * tests/test-dfa-match-aux.c (main): Specify RE_SYNTAX_EGREP, not
+ RE_SYNTAX_GREP, so tests can use ERE syntax rather than BRE.
+
2020-10-30 Bernhard Voelker <mail@bernhard-voelker.de>
verify tests: avoid -Wmissing-declarations warnings
init_localeinfo (&localeinfo);
dfa = dfaalloc ();
- dfasyntax (dfa, &localeinfo, RE_SYNTAX_GREP | RE_NO_EMPTY_RANGES, 0);
+ dfasyntax (dfa, &localeinfo, RE_SYNTAX_EGREP | RE_NO_EMPTY_RANGES, 0);
dfacomp (argv[1], strlen (argv[1]), dfa, 0);
beg = argv[2];