Author: centic
Date: Sat Aug 24 18:32:45 2013
New Revision: 1517179

URL: http://svn.apache.org/r1517179
Log:
Exclude TestUnfixedBugs from OOXMLLite to avoid confusing output in ant-build 
of ooxml-lite

Modified:
    poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java

Modified: poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java?rev=1517179&r1=1517178&r2=1517179&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/util/OOXMLLite.java Sat Aug 24 
18:32:45 2013
@@ -17,16 +17,25 @@
 
 package org.apache.poi.util;
 
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.lang.reflect.Field;
+import java.util.ArrayList;
+import java.util.Enumeration;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Vector;
+import java.util.jar.JarEntry;
+import java.util.jar.JarFile;
+
 import junit.framework.TestCase;
 import junit.framework.TestSuite;
 import junit.textui.TestRunner;
 
-import java.io.*;
-import java.util.*;
-import java.util.jar.JarEntry;
-import java.util.jar.JarFile;
-import java.lang.reflect.Field;
-
 /**
  * Build a 'lite' version of the ooxml-schemas.jar
  *
@@ -84,7 +93,8 @@ public final class OOXMLLite {
         List<String> lst = new ArrayList<String>();
         //collect unit tests
         System.out.println("Collecting unit tests from " + _testDir);
-        collectTests(_testDir, _testDir, lst, ".+?\\.Test.+?\\.class$");
+        collectTests(_testDir, _testDir, lst, ".+?\\.Test.+?\\.class$", 
".+TestUnfixedBugs.class");
+        System.out.println("Found " + lst.size() + " tests");
 
         TestSuite suite = new TestSuite();
         for (String arg : lst) {
@@ -146,16 +156,16 @@ public final class OOXMLLite {
      * @param out   output
      * @param ptrn  the pattern (regexp) to filter found files
      */
-    private static void collectTests(File root, File arg, List<String> out, 
String ptrn) {
+    private static void collectTests(File root, File arg, List<String> out, 
String ptrn, String exclude) {
         if (arg.isDirectory()) {
             for (File f : arg.listFiles()) {
-                collectTests(root, f, out, ptrn);
+                collectTests(root, f, out, ptrn, exclude);
             }
         } else {
             String path = arg.getAbsolutePath();
             String prefix = root.getAbsolutePath();
             String cls = path.substring(prefix.length() + 
1).replace(File.separator, ".");
-            if(cls.matches(ptrn)) out.add(cls);
+            if(cls.matches(ptrn) && !cls.matches(exclude)) out.add(cls);
         }
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@poi.apache.org
For additional commands, e-mail: commits-h...@poi.apache.org

Reply via email to