# HG changeset patch
# User Artem Tikhomirov <tikhomirov.artem@gmail.com>
# Date 1314152275 -7200
# Node ID c8baeb813d74f04b824d01aebbc5574f91c5853e
# Parent  c6450b0b1fd563ec39bee7e8e4663f981497bbb0
Include tests for hgignore into the suite

diff -r c6450b0b1fd5 -r c8baeb813d74 build.xml
--- a/build.xml	Wed Aug 24 04:10:17 2011 +0200
+++ b/build.xml	Wed Aug 24 04:17:55 2011 +0200
@@ -85,6 +85,7 @@
 			<test name="org.tmatesoft.hg.test.TestManifest" />
 			<test name="org.tmatesoft.hg.test.TestStatus" />
 			<test name="org.tmatesoft.hg.test.TestStorePath" />
+			<test name="org.tmatesoft.hg.test.TestIgnore" />
 			<test name="org.tmatesoft.hg.test.TestByteChannel" />
 			<test name="org.tmatesoft.hg.test.TestClone" />
 			<test name="org.tmatesoft.hg.test.TestIncoming" />
diff -r c6450b0b1fd5 -r c8baeb813d74 src/org/tmatesoft/hg/repo/HgIgnore.java
--- a/src/org/tmatesoft/hg/repo/HgIgnore.java	Wed Aug 24 04:10:17 2011 +0200
+++ b/src/org/tmatesoft/hg/repo/HgIgnore.java	Wed Aug 24 04:17:55 2011 +0200
@@ -116,9 +116,6 @@
 		while (start <= end && line.charAt(start) == '*') start++;
 		while (end > start && line.charAt(end) == '*') end--;
 
-		if (line.endsWith(".so")) {
-			System.out.println();
-		}
 		int inCurly = 0;
 		for (int i = start; i <= end; i++) {
 			char ch = line.charAt(i);