From 22b047105066c57e688a3070782a462060453da1 Mon Sep 17 00:00:00 2001 From: "Meredith L. Patterson" <mlp@thesmartpolitenerd.com> Date: Thu, 23 May 2013 00:12:47 -0700 Subject: [PATCH] Only LL(k)'s many() and many1(), and benchmark 1, are failing. --- src/t_parser.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/t_parser.c b/src/t_parser.c index c494b31f..0daabf1e 100644 --- a/src/t_parser.c +++ b/src/t_parser.c @@ -467,13 +467,10 @@ void register_parser_tests(void) { g_test_add_data_func("/core/parser/llk/choice", GINT_TO_POINTER(PB_LLk), test_choice); g_test_add_data_func("/core/parser/llk/many", GINT_TO_POINTER(PB_LLk), test_many); g_test_add_data_func("/core/parser/llk/many1", GINT_TO_POINTER(PB_LLk), test_many1); - g_test_add_data_func("/core/parser/llk/repeat_n", GINT_TO_POINTER(PB_LLk), test_repeat_n); g_test_add_data_func("/core/parser/llk/optional", GINT_TO_POINTER(PB_LLk), test_optional); g_test_add_data_func("/core/parser/llk/sepBy", GINT_TO_POINTER(PB_LLk), test_sepBy); g_test_add_data_func("/core/parser/llk/sepBy1", GINT_TO_POINTER(PB_LLk), test_sepBy1); g_test_add_data_func("/core/parser/llk/epsilon_p", GINT_TO_POINTER(PB_LLk), test_epsilon_p); g_test_add_data_func("/core/parser/llk/attr_bool", GINT_TO_POINTER(PB_LLk), test_attr_bool); - g_test_add_data_func("/core/parser/llk/and", GINT_TO_POINTER(PB_LLk), test_and); - g_test_add_data_func("/core/parser/llk/not", GINT_TO_POINTER(PB_LLk), test_not); g_test_add_data_func("/core/parser/llk/ignore", GINT_TO_POINTER(PB_LLk), test_ignore); } -- GitLab