changeset 271:c8baeb813d74

Include tests for hgignore into the suite
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 24 Aug 2011 04:17:55 +0200
parents c6450b0b1fd5
children c2601c0b4a1f
files build.xml src/org/tmatesoft/hg/repo/HgIgnore.java
diffstat 2 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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" />
--- 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);