This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
from 0ef767c109 Align embedded MIME type mappings with BZ 68378 updates to web.xml new 9106ff20e7 Refactor tests to avoid use of @Ignore new 8a3f669de8 Only need one ECB test to ensure it is disabled new bd225f98f2 GCM doesn't need padding so test using NoPadding new abf1fc228e Refactor performance tests to separate class new 7080da004d Refactor test so it accounts for running on different JREs new f45817ec4c Refactor test that requires large heap into a separate category new 53da9862c9 Refactor tests that require large heap to new category new 857a6897fd Refactor test to test renegotiation failure rather than skipping test new 4913952a45 Don't flag a test as skipped that is never going to be able to pass new 255b6679be This is a performance test - use correct naming new 5b9b7c9b01 Refactor so test doesn't appear as skipped new fbc2fc37c9 Results depend on timing so group this with the performance tests new e004a9e153 Refactor as this test requires manual intervention new 3730a2f413 Drop test. The feature can only be (easily) implemented in Tomcat 11+ new bedc698aad Make test output easier to read new 14c9d9a80a Update ignores The 16 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .gitignore | 1 + BUILDING.txt | 21 ++- build.xml | 2 + .../org/apache/catalina/connector/TestRequest.java | 22 --- .../connector/TestRequestPerformance.java} | 30 ++-- .../catalina/core/TestDefaultInstanceManager.java | 73 -------- ... => TestDefaultInstanceManagerPerformance.java} | 69 +------- ...terWebappClassLoaderThreadLocalMemoryLeak.java} | 4 +- .../servlets/TestDefaultServletRedirect.java | 133 -------------- .../EncryptionInterceptorBaseTest.java | 185 +++++++++++++++++++ .../group/interceptors/TestEncryptInterceptor.java | 196 +-------------------- .../TestEncryptInterceptorLargeHeap.java | 47 +++++ test/org/apache/coyote/http2/TestLargeUpload.java | 2 +- test/org/apache/el/parser/TestELParser.java | 61 ------- .../apache/el/parser/TestELParserPerformance.java | 82 +++++++++ test/org/apache/jasper/compiler/TestGenerator.java | 12 +- test/org/apache/tomcat/util/buf/TestByteChunk.java | 36 ---- ...stUEncoder.java => TestByteChunkLargeHeap.java} | 45 +++-- test/org/apache/tomcat/util/buf/TestCharChunk.java | 31 ---- ...stUEncoder.java => TestCharChunkLargeHeap.java} | 40 +++-- test/org/apache/tomcat/util/net/TestSsl.java | 27 +-- .../apache/tomcat/util/net/TestXxxEndpoint.java | 10 +- ...it.java => TestConnectionLimitPerformance.java} | 4 +- ...va => TesterWsWebSocketContainerWithProxy.java} | 7 +- ...ages.java => TestAsyncMessagesPerformance.java} | 4 +- ....java => TesterWsRemoteEndpointImplServer.java} | 7 +- 26 files changed, 456 insertions(+), 695 deletions(-) copy test/org/apache/{tomcat/util/http/parser/TestPriority.java => catalina/connector/TestRequestPerformance.java} (57%) copy test/org/apache/catalina/core/{TestDefaultInstanceManager.java => TestDefaultInstanceManagerPerformance.java} (53%) rename test/org/apache/catalina/loader/{TestWebappClassLoaderThreadLocalMemoryLeak.java => TesterWebappClassLoaderThreadLocalMemoryLeak.java} (98%) delete mode 100644 test/org/apache/catalina/servlets/TestDefaultServletRedirect.java create mode 100644 test/org/apache/catalina/tribes/group/interceptors/EncryptionInterceptorBaseTest.java create mode 100644 test/org/apache/catalina/tribes/group/interceptors/TestEncryptInterceptorLargeHeap.java create mode 100644 test/org/apache/el/parser/TestELParserPerformance.java copy test/org/apache/tomcat/util/buf/{TestUEncoder.java => TestByteChunkLargeHeap.java} (51%) copy test/org/apache/tomcat/util/buf/{TestUEncoder.java => TestCharChunkLargeHeap.java} (56%) rename test/org/apache/tomcat/websocket/{TestConnectionLimit.java => TestConnectionLimitPerformance.java} (96%) rename test/org/apache/tomcat/websocket/{TestWsWebSocketContainerWithProxy.java => TesterWsWebSocketContainerWithProxy.java} (91%) rename test/org/apache/tomcat/websocket/server/{TestAsyncMessages.java => TestAsyncMessagesPerformance.java} (97%) rename test/org/apache/tomcat/websocket/server/{TestWsRemoteEndpointImplServer.java => TesterWsRemoteEndpointImplServer.java} (97%) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org