| Index: tools/lexer_generator/automata_test.py
|
| diff --git a/tools/lexer_generator/automata_test.py b/tools/lexer_generator/automata_test.py
|
| index ca4abe37f02d5de3486e9247e8c75bad16b94aee..abe33e8731a473cd5a519bf049bbf9c7deb23680 100644
|
| --- a/tools/lexer_generator/automata_test.py
|
| +++ b/tools/lexer_generator/automata_test.py
|
| @@ -52,8 +52,8 @@ class AutomataTestCase(unittest.TestCase):
|
| (".", ["a", "b"], ["", "aa"]),
|
| (".*", ["", "a", "abcaabbcc"], []),
|
| ("a.b", ["aab", "abb", "acb"], ["ab", ""]),
|
| - # ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
|
| - # ("a.+b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
|
| + ("a.?b", ["aab", "abb", "acb", "ab"], ["aaab", ""]),
|
| + ("a.+b", ["aab", "abb", "acb"], ["aaac", "ab", ""]),
|
| (".|.", ["a", "b"], ["aa", ""]),
|
| ]
|
|
|
|
|