This is an automated email from the ASF dual-hosted git repository.
markt-asf 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 4c9b8a9827 Use class name to exclude. Avoids a 'skipped test' warning
4c9b8a9827 is described below
commit 4c9b8a9827050c4e1818290e37237f05b9fdb4b9
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Jun 19 10:23:55 2026 +0100
Use class name to exclude. Avoids a 'skipped test' warning
---
...rdTagPerformance.java => TesterNonstandardTagPerformance.java} | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/test/org/apache/jasper/compiler/TestNonstandardTagPerformance.java
b/test/org/apache/jasper/compiler/TesterNonstandardTagPerformance.java
similarity index 96%
rename from test/org/apache/jasper/compiler/TestNonstandardTagPerformance.java
rename to test/org/apache/jasper/compiler/TesterNonstandardTagPerformance.java
index 11d74957f9..649bb872ae 100644
--- a/test/org/apache/jasper/compiler/TestNonstandardTagPerformance.java
+++ b/test/org/apache/jasper/compiler/TesterNonstandardTagPerformance.java
@@ -23,12 +23,15 @@ import jakarta.servlet.jsp.PageContext;
import jakarta.servlet.jsp.TesterPageContext;
import org.junit.Before;
-import org.junit.Ignore;
import org.junit.Test;
import org.apache.jasper.runtime.JspRuntimeLibrary;
-public class TestNonstandardTagPerformance {
+/*
+ * This test requires additional setup and cannot be run as part of a standard
test run so it is excluded due to the
+ * name starting Tester...
+ */
+public class TesterNonstandardTagPerformance {
static final long NUM_ITERATIONS = 100000000L;
static final int NUM_TESTS = 5;
@@ -105,7 +108,6 @@ public class TestNonstandardTagPerformance {
* </ol>
* @throws Throwable generic error
*/
- @Ignore
@Test
public void runBenchmark() throws Throwable {
long[] durations = new long[NUM_TESTS];
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]