Commit 156af801e686e34685e2ac078a48d8224f3e33b4

Carlos Martín Nieto 2011-06-28T16:27:16

Add test for section header at end of file Signed-off-by: Carlos Martín Nieto <cmn@elego.de>

diff --git a/tests/resources/config/config10 b/tests/resources/config/config10
new file mode 100644
index 0000000..dde1791
--- /dev/null
+++ b/tests/resources/config/config10
@@ -0,0 +1 @@
+[empty]
diff --git a/tests/t15-config.c b/tests/t15-config.c
index 25cdcbd..a4e11c3 100644
--- a/tests/t15-config.c
+++ b/tests/t15-config.c
@@ -263,6 +263,14 @@ BEGIN_TEST(config13, "can't delete a non-existent value")
 	git_config_free(cfg);
 END_TEST
 
+BEGIN_TEST(config14, "don't fail horribly if a section header is in the last line")
+	git_config *cfg;
+
+	/* By freeing the config, we make sure we flush the values  */
+	must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config10"));
+	git_config_free(cfg);
+END_TEST
+
 BEGIN_SUITE(config)
 	 ADD_TEST(config0);
 	 ADD_TEST(config1);
@@ -278,4 +286,5 @@ BEGIN_SUITE(config)
 	 ADD_TEST(config11);
 	 ADD_TEST(config12);
 	 ADD_TEST(config13);
+	 ADD_TEST(config14);
 END_SUITE