This is an automated email from the ASF dual-hosted git repository. dsoumis pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 67b34d0759f380390ea9f3bb587518100f42d411 Author: Dimitris Soumis <[email protected]> AuthorDate: Mon Dec 29 15:54:04 2025 +0200 Add '-test-name-default' to targets for tests to run and to resolve coverage-report error. --- build.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index 13540fdef8..08432bc57b 100644 --- a/build.xml +++ b/build.xml @@ -2091,13 +2091,13 @@ </target> <target name="test-nio" description="Runs the JUnit test cases for NIO. Does not stop on errors." - depends="setup-jacoco,test-compile,deploy,test-openssl-exists" if="${execute.test.nio}"> + depends="-test-name-default,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-only-nio" description="Runs the JUnit test cases or NIO without test preparations. Does not stop on errors." - depends="setup-jacoco,test-openssl-exists" if="${execute.test.nio}"> + depends="-test-name-default,setup-jacoco,test-openssl-exists" if="${execute.test.nio}"> <runtests protocol="org.apache.coyote.http11.Http11NioProtocol" extension=".NIO" /> </target> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
