This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
from 38832d7389 Align embedded MIME type mappings with BZ 68378 updates to web.xml new ab777f74e1 Refactor tests to avoid use of @Ignore new 731ea0b5d2 Only need one ECB test to ensure it is disabled new 2d9fb89f07 GCM doesn't need padding so test using NoPadding new b540ea4f28 Refactor performance tests to separate class new 4a1ab19311 Refactor test so it accounts for running on different JREs new c1a73e34c6 Refactor test that requires large heap into a separate category new 5159b4966a Refactor tests that require large heap to new category new 324e548325 Refactor test to test renegotiation failure rather than skipping test new 455acff502 This is a performance test - use correct naming new fe80bae1d5 Refactor so test doesn't appear as skipped new 4fcfdb8ae7 Refactor as this test requires manual intervention new 4dcca052da It is only client initiated renegotiation that has been disabled new 0e009b57bf Move performance test to separate class new 0165e6f358 maxConnections functionality was restored to NIO2 quite some time ago new 2847553078 Don't record test as skipped if it can never pass new db14bf335e Test is skipped due to JSSE vs Apr, not renegotiation new 0ed0c280b0 Avoid skipped test reports for tests that can never pass new 354f56d6fa Test is no longer limited to NIO2 The 18 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: BUILDING.txt | 21 ++- build.xml | 2 + .../catalina/connector/TestMaxConnections.java | 3 - .../org/apache/catalina/connector/TestRequest.java | 22 --- .../connector/TestRequestPerformance.java} | 34 ++-- .../catalina/core/TestDefaultInstanceManager.java | 73 -------- ... => TestDefaultInstanceManagerPerformance.java} | 71 +------- ...terWebappClassLoaderThreadLocalMemoryLeak.java} | 4 +- .../EncryptionInterceptorBaseTest.java | 185 +++++++++++++++++++ .../group/interceptors/TestEncryptInterceptor.java | 196 +-------------------- .../TestEncryptInterceptorLargeHeap.java | 47 +++++ .../catalina/valves/rewrite/TestResolverSSL.java | 4 - .../http11/upgrade/TestUpgradeInternalHandler.java | 6 +- 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 | 58 +++--- ...stUEncoder.java => TestByteChunkLargeHeap.java} | 45 +++-- test/org/apache/tomcat/util/buf/TestCharChunk.java | 35 +--- ...stUEncoder.java => TestCharChunkLargeHeap.java} | 40 +++-- .../apache/tomcat/util/buf/TestMessageBytes.java | 95 ---------- ...Bytes.java => TestMessageBytesPerformance.java} | 50 +----- .../org/apache/tomcat/util/net/TestClientCert.java | 7 - test/org/apache/tomcat/util/net/TestCustomSsl.java | 7 +- .../tomcat/util/net/TestCustomSslTrustManager.java | 9 +- test/org/apache/tomcat/util/net/TestSsl.java | 28 +-- test/org/apache/tomcat/util/net/TesterSupport.java | 20 +-- .../tomcat/util/net/openssl/TestOpenSSLConf.java | 12 +- ...it.java => TestConnectionLimitPerformance.java} | 4 +- ...va => TesterWsWebSocketContainerWithProxy.java} | 7 +- ....java => TesterWsRemoteEndpointImplServer.java} | 7 +- 31 files changed, 513 insertions(+), 734 deletions(-) copy test/org/apache/{coyote/http2/TestHttp2ConnectionTimeouts.java => catalina/connector/TestRequestPerformance.java} (57%) copy test/org/apache/catalina/core/{TestDefaultInstanceManager.java => TestDefaultInstanceManagerPerformance.java} (52%) rename test/org/apache/catalina/loader/{TestWebappClassLoaderThreadLocalMemoryLeak.java => TesterWebappClassLoaderThreadLocalMemoryLeak.java} (98%) 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%) copy test/org/apache/tomcat/util/buf/{TestMessageBytes.java => TestMessageBytesPerformance.java} (83%) 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/{TestWsRemoteEndpointImplServer.java => TesterWsRemoteEndpointImplServer.java} (96%) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org