This is an automated email from the ASF dual-hosted git repository.
remm 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 60894a2e4c Add test target that also recompiles all classes
60894a2e4c is described below
commit 60894a2e4c95fea4cb90bd54b4b0dc9f3904d42c
Author: remm <[email protected]>
AuthorDate: Thu Mar 20 12:26:23 2025 +0100
Add test target that also recompiles all classes
---
build.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/build.xml b/build.xml
index 1915402359..ca0d2828bf 100644
--- a/build.xml
+++ b/build.xml
@@ -1938,6 +1938,9 @@
<target name="test" description="Runs the JUnit test cases"
depends="test-nio,test-nio2,coverage-report,test-status" />
+ <target name="test-clean" description="Runs the JUnit test cases"
+
depends="clean-classes,test-nio,test-nio2,coverage-report,test-status" />
+
<target name="test-only" description="Runs the JUnit test cases, without
compilation"
depends="test-only-nio,test-only-nio2,test-status" />
@@ -3507,6 +3510,11 @@ Configured for ${release.asfusername} to release Tomcat
${version.major}.${versi
</target>
+ <target name="clean-classes">
+ <delete dir="${tomcat.classes}" />
+ <delete dir="${test.classes}" />
+ </target>
+
<!-- ================ Download and dependency building ===================
-->
<target name="download-validate"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]