This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
from 786285c1ae Forgot the code cleanup new 996c00741b Only need one ECB test to ensure it is disabled new ebf01c056e GCM doesn't need padding so test using NoPadding new c7796834bf Refactor performance tests to separate class new 44f23647c1 Test will always pass for Tomcat 11 new b4634a9723 Refactor test that requires large heap into a separate category new 4db283bf81 Refactor tests that require large heap to new category new 00e7bca774 Refactor test to test renegotiation failure rather than skipping test new 45b4b3436e Don't flag a test as skipped that is never going to be able to pass new 8fe3db67fd This is a performance test - use correct naming new df5d4b9e23 Refactor so test doesn't appear as skipped new 9c5f303e9a Results depend on timing so group this with the performance tests new 442b0d38ea Refactor as this test requires manual intervention The 12 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 + .../EncryptionInterceptorBaseTest.java | 185 +++++++++++++++++++ .../group/interceptors/TestEncryptInterceptor.java | 196 +-------------------- .../TestEncryptInterceptorLargeHeap.java | 47 +++++ test/org/apache/el/parser/TestELParser.java | 61 ------- .../apache/el/parser/TestELParserPerformance.java | 84 +++++++++ test/org/apache/jasper/compiler/TestGenerator.java | 3 +- 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 | 29 +-- .../apache/tomcat/util/net/TestXxxEndpoint.java | 8 +- ...it.java => TestConnectionLimitPerformance.java} | 4 +- ...va => TesterWsWebSocketContainerWithProxy.java} | 7 +- ...ages.java => TestAsyncMessagesPerformance.java} | 4 +- ....java => TesterWsRemoteEndpointImplServer.java} | 7 +- 18 files changed, 429 insertions(+), 381 deletions(-) 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