This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
from eaaec55c0b Update ignores new 776b592404 Refactor tests to avoid use of @Ignore new 85618aa9e2 Only need one ECB test to ensure it is disabled new 08d7b8b85b GCM doesn't need padding so test using NoPadding new fef9076584 Refactor performance tests to separate class new 8258240ec2 Refactor test so it accounts for running on different JREs new 5cd61839aa Refactor test that requires large heap into a separate category new 617152d7de Refactor tests that require large heap to new category new 1064d250c9 Refactor test to test renegotiation failure rather than skipping test new df5082cb6b Don't flag a test as skipped that is never going to be able to pass new eb6fed4eb0 This is a performance test - use correct naming new f9d9e489f1 Refactor so test doesn't appear as skipped new ef9b789e8f Results depend on timing so group this with the performance tests new 5bfffc518f Refactor as this test requires manual intervention new 9542fad761 It is only client initiated renegotiation that has been disabled new 3cf7bdd47f Move performance test to separate class new 34bbcc9fa8 Don't record test as skipped if it can never pass new c0630c9ab7 Test is skipped due to JSSE vs Apr, not renegotiation new 43a2f5591b Avoid skipped test reports for tests that can never pass 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 + .../org/apache/catalina/connector/TestRequest.java | 22 --- .../connector/TestRequestPerformance.java} | 34 ++-- .../catalina/core/TestDefaultInstanceManager.java | 73 -------- ... => TestDefaultInstanceManagerPerformance.java} | 69 +------- ...terWebappClassLoaderThreadLocalMemoryLeak.java} | 4 +- .../EncryptionInterceptorBaseTest.java | 185 +++++++++++++++++++ .../group/interceptors/TestEncryptInterceptor.java | 196 +-------------------- .../TestEncryptInterceptorLargeHeap.java | 47 +++++ 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 +++-- .../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 +-- .../apache/tomcat/util/net/TestXxxEndpoint.java | 10 +- test/org/apache/tomcat/util/net/TesterSupport.java | 15 -- .../tomcat/util/net/openssl/TestOpenSSLConf.java | 12 +- ...it.java => TestConnectionLimitPerformance.java} | 4 +- ...va => TesterWsWebSocketContainerWithProxy.java} | 7 +- ...ages.java => TestAsyncMessagesPerformance.java} | 4 +- ....java => TesterWsRemoteEndpointImplServer.java} | 7 +- 30 files changed, 476 insertions(+), 739 deletions(-) copy test/org/apache/{coyote/http2/TestHttp2ConnectionTimeouts.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%) 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/{TestAsyncMessages.java => TestAsyncMessagesPerformance.java} (97%) 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