about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--tests/testsuite.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f11c97b3..0c27b06d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -83,6 +83,7 @@ tests_sources = \
 	tests/test_history.c tests/test_history.h \
 	tests/test_jid.c tests/test_jid.h \
 	tests/test_muc.c tests/test_muc.h \
+	tests/test_parser.c tests/test_parser.h \
 	tests/test_autocomplete.c tests/test_autocomplete.h \
 	tests/testsuite.c
 
diff --git a/tests/testsuite.c b/tests/testsuite.c
index bc217b7b..dfb76df7 100644
--- a/tests/testsuite.c
+++ b/tests/testsuite.c
@@ -134,7 +134,6 @@ int main(int argc, char* argv[]) {
         unit_test(returns_fulljid_when_exists),
         unit_test(returns_barejid_when_fulljid_not_exists),
 
-/*
         unit_test(parse_null_returns_null),
         unit_test(parse_empty_returns_null),
         unit_test(parse_space_returns_null),
@@ -186,6 +185,7 @@ int main(int argc, char* argv[]) {
         unit_test(parse_options_when_unknown_opt_sets_error),
         unit_test(parse_options_with_duplicated_option_sets_error),
 
+/*
         unit_test(empty_list_when_none_added),
         unit_test(contains_one_element),
         unit_test(first_element_correct),