You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2022/02/07 21:01:26 UTC

[tomcat] branch main updated: Fix individual test targets

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
     new 7a33227  Fix individual test targets
7a33227 is described below

commit 7a33227760aa64dd50f2784923b9f0c849975d68
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Feb 7 21:01:12 2022 +0000

    Fix individual test targets
---
 build.xml                  | 6 +++---
 webapps/docs/changelog.xml | 4 ++++
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/build.xml b/build.xml
index f7fca71..4417a9c 100644
--- a/build.xml
+++ b/build.xml
@@ -1863,7 +1863,7 @@
   <property name="junit.formatter.extension" value=".txt" />
 
   <target name="test" description="Runs the JUnit test cases"
-          depends="setup-jacoco,test-nio,test-nio2,coverage-report,test-status" />
+          depends="test-nio,test-nio2,coverage-report,test-status" />
 
   <target name="test-status"
           description="Analyses logs directory and reports on skipped tests, test failures and test errors">
@@ -1901,13 +1901,13 @@
   </target>
 
   <target name="test-nio" description="Runs the JUnit test cases for NIO. Does not stop on errors."
-          depends="test-compile,deploy,test-openssl-exists" if="${execute.test.nio}">
+          depends="setup-jacoco,test-compile,deploy,test-openssl-exists" if="${execute.test.nio}">
     <runtests protocol="org.apache.coyote.http11.Http11NioProtocol"
               extension=".NIO" />
   </target>
 
   <target name="test-nio2" description="Runs the JUnit test cases for NIO2. Does not stop on errors."
-          depends="test-compile,deploy,test-openssl-exists" if="${execute.test.nio2}">
+          depends="setup-jacoco,test-compile,deploy,test-openssl-exists" if="${execute.test.nio2}">
     <runtests protocol="org.apache.coyote.http11.Http11Nio2Protocol"
               extension=".NIO2" />
   </target>
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 040a580..3a22409 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -185,6 +185,10 @@
         Use LF line endings for text files in JARs to support reproducible
         builds across different operating systems. (markt)
       </scode>
+      <fix>
+        Fix dependencies for individual test targets in Ant build file. Based on
+        <pr>468</pr> provided by Totoo chenyonghui. (markt)
+      </fix>
     </changelog>
   </subsection>
 </section>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org