You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2021/01/10 13:34:04 UTC

svn commit: r1885334 - /poi/trunk/build.xml

Author: kiwiwings
Date: Sun Jan 10 13:34:04 2021
New Revision: 1885334

URL: http://svn.apache.org/viewvc?rev=1885334&view=rev
Log:
ignore inner classes in junitlauncher run

Modified:
    poi/trunk/build.xml

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1885334&r1=1885333&r2=1885334&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Sun Jan 10 13:34:04 2021
@@ -1314,6 +1314,7 @@ under the License.
             module1="ooxml" module2="scratchpad" outputDir="${ooxml.reports.test}">
             <zipfileset src="build/dist/maven/poi-ooxml-tests/poi-ooxml-${version.id}-tests.jar">
                 <include name="**/${testpattern}.class"/>
+                <exclude name="**/*$*.class"/>
                 <exclude name="**/TestUnfixedBugs.class"/>
                 <exclude name="**/All*Tests.class"/>
                 <exclude name="**/TestSignatureInfo.class"/>
@@ -1548,6 +1549,7 @@ under the License.
                  modulepath-ref="test-main.modules" module1="poi" outputDir="${main.reports.test}">
             <zipfileset src="build/dist/maven/poi-tests/poi-${version.id}-tests.jar">
                 <include name="**/${testpattern}.class"/>
+                <exclude name="**/*$*.class"/>
                 <exclude name="**/All*Tests.class"/>
                 <exclude name="**/TestUnfixedBugs.class"/>
                 <exclude name="**/TestcaseRecordInputStream.class"/>
@@ -1604,6 +1606,7 @@ under the License.
                  modulepath-ref="test-scratchpad.modules" module1="scratchpad" outputDir="${scratchpad.reports.test}">
             <zipfileset src="build/dist/maven/poi-scratchpad-tests/poi-scratchpad-${version.id}-tests.jar">
                 <include name="**/${testpattern}.class"/>
+                <exclude name="**/*$*.class"/>
                 <exclude name="**/All*Tests.class"/>
                 <exclude name="**/${testexcludepattern}.class"/>
                 <patternset refid="exclude-scratchpad-test" if:true="${scratchpad.ignore}"/>
@@ -1633,6 +1636,7 @@ under the License.
                      modulepath-ref="@{modulepath-ref}" module1="ooxml" module2="scratchpad" outputDir="${ooxml.reports.test}">
                 <zipfileset src="build/dist/maven/poi-ooxml-tests/poi-ooxml-${version.id}-tests.jar">
                     <include name="**/${testpattern}.class"/>
+                    <exclude name="**/*$*.class"/>
                     <exclude name="**/All*Tests.class"/>
                     <exclude name="**/TestUnfixedBugs.class"/>
                     <exclude name="**/${testexcludepattern}.class"/>
@@ -1696,6 +1700,7 @@ under the License.
                  modulepath-ref="test-integration.modules" module1="stress" outputDir="${integration.reports.test}">
             <zipfileset src="build/dist/maven/poi-integration/poi-integration-${version.id}.jar">
                 <include name="**/${testpattern}.class"/>
+                <exclude name="**/*$*.class"/>
                 <exclude name="**/${testexcludepattern}.class"/>
                 <patternset refid="exclude-scratchpad-test" if:true="${scratchpad.ignore}"/>
             </zipfileset>
@@ -1849,6 +1854,7 @@ under the License.
                  modulepath-ref="test-excelant.modules" module1="excelant" outputDir="${excelant.reports.test}">
             <zipfileset src="build/dist/maven/poi-excelant-tests/poi-excelant-${version.id}-tests.jar">
                 <include name="**/${testpattern}.class"/>
+                <exclude name="**/*$*.class"/>
                 <exclude name="**/${testexcludepattern}.class"/>
                 <patternset refid="exclude-scratchpad-test" if:true="${scratchpad.ignore}"/>
             </zipfileset>



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