[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 14:47:32 UTC 2010


The following commit has been merged in the master branch:
commit a9fdf7436fb1dc47cdfc1b981abb23e5e176c7bb
Author: John Goerzen <jgoerzen at complete.org>
Date:   Fri Nov 19 01:36:43 2004 +0100

    Fixed eof problems
    
    Keywords:
    
    
    (jgoerzen at complete.org--projects/missingh--head--0.5--patch-77)

diff --git a/ChangeLog b/ChangeLog
index d966402..97f31d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,18 @@
 # arch-tag: automatic-ChangeLog--jgoerzen at complete.org--projects/missingh--head--0.5
 #
 
+2004-11-18 18:36:43 GMT	John Goerzen <jgoerzen at complete.org>	patch-77
+
+    Summary:
+      Fixed eof problems
+    Revision:
+      missingh--head--0.5--patch-77
+
+
+    modified files:
+     ChangeLog testsrc/ConfigParser/Parsertest.hs
+
+
 2004-11-18 18:34:40 GMT	John Goerzen <jgoerzen at complete.org>	patch-76
 
     Summary:
diff --git a/testsrc/ConfigParser/Parsertest.hs b/testsrc/ConfigParser/Parsertest.hs
index 553e783..d2f7219 100644
--- a/testsrc/ConfigParser/Parsertest.hs
+++ b/testsrc/ConfigParser/Parsertest.hs
@@ -29,6 +29,12 @@ test_basic =
         f "#foo bar" []
         f "#foo bar\n" []
         f "[emptysect]" [("emptysect", [])]
+        f "#foo bar\n[emptysect]\n" [("emptysect", [])]
+        f "# [nonexistant]\n[emptysect]\n" [("emptysect", [])]
+        f "#fo\n[Cemptysect\n#asdfboo\n  \n  # #fnonexistantg"
+          [("Cemptysect", [])]
+        f "[emptysect]\n# [nonexistant]\n" [("emptysect", [])]
+        
         f "foo: bar" [("DEFAULT", [("foo", "bar")])]
 
 tests = TestList [TestLabel "test_basic" (TestCase test_basic)

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list