changeset 4443:4e521a3ee5eb

Test issue 562: .hgignore requires newline at end
author Patrick Mezard <pmezard@gmail.com>
date Sat, 19 May 2007 22:46:59 +0200
parents 3b0f73edee57
children 2d32e3ae01a7
files tests/test-hgignore tests/test-hgignore.out
diffstat 2 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-hgignore
+++ b/tests/test-hgignore
@@ -1,6 +1,25 @@
 #!/bin/sh
 
 hg init
+
+# Test issue 562: .hgignore requires newline at end
+touch foo
+touch bar
+touch baz
+cat > makeignore.py <<EOF
+f = open(".hgignore", "w")
+f.write("ignore\n")
+f.write("foo\n")
+# No EOL here
+f.write("bar")
+f.close()
+EOF
+
+python makeignore.py
+echo % should display baz only
+hg status
+rm foo bar baz .hgignore makeignore.py
+
 touch a.o
 touch a.c
 touch syntax
--- a/tests/test-hgignore.out
+++ b/tests/test-hgignore.out
@@ -1,3 +1,5 @@
+% should display baz only
+? baz
 --
 A dir/b.o
 ? a.c