This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git.
from 03e8fe8 Kafka to S3: Fixed title new 42b1442 CAMEL-16251 - Move Performance and jmh itests in a separated repository new a3595b8 CAMEL-16251 - Move Performance and jmh itests in a separated repository The 2 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: pom.xml | 1 + tests/camel-jmh/pom.xml | 142 ++++++++++++++ .../camel/itest/jmh/CSimpleOperatorTest.java | 131 +++++++++++++ .../org/apache/camel/itest/jmh/CSimpleScript1.java | 40 ++-- .../org/apache/camel/itest/jmh/CSimpleScript2.java | 40 ++-- .../org/apache/camel/itest/jmh/CSimpleScript3.java | 40 ++-- .../camel/itest/jmh/CaseInsensitiveMapTest.java | 212 +++++++++++++++++++++ .../camel/itest/jmh/ContainsIgnoreCaseTest.java | 85 +++++++++ .../camel/itest/jmh/DefaultUuidGeneratorTest.java | 84 ++++++++ .../camel/itest/jmh/DirectConcurrentTest.java | 120 ++++++++++++ .../camel/itest/jmh/FastTypeConverterTest.java | 108 +++++++++++ .../java/org/apache/camel/itest/jmh/JoorTest.java | 154 +++++++++++++++ .../camel/itest/jmh/LoadTypeConvertersTest.java | 124 ++++++++++++ .../apache/camel/itest/jmh/LogEndpointTest.java | 102 ++++++++++ .../apache/camel/itest/jmh/NormalizeUriTest.java | 139 ++++++++++++++ .../camel/itest/jmh/SimpleExpressionTest.java | 112 +++++++++++ .../camel/itest/jmh/SimpleMockPlaceholderTest.java | 117 ++++++++++++ .../org/apache/camel/itest/jmh/SimpleMockTest.java | 110 +++++++++++ .../apache/camel/itest/jmh/SimpleOperatorTest.java | 131 +++++++++++++ .../camel/itest/jmh/SlowTypeConverterTest.java | 106 +++++++++++ .../apache/camel/itest/jmh/TypeConverterTest.java | 175 +++++++++++++++++ .../src/test/resources/META-INF/LICENSE.txt | 203 ++++++++++++++++++++ .../src/test/resources/META-INF/NOTICE.txt | 11 ++ .../services/org/apache/camel/csimple.properties | 16 +- .../camel-jmh/src/test/resources/log4j2.properties | 24 ++- tests/camel-jmh/src/test/resources/sample_soap.xml | 33 ++++ {profiling => tests}/pom.xml | 7 +- 27 files changed, 2492 insertions(+), 75 deletions(-) create mode 100644 tests/camel-jmh/pom.xml create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleOperatorTest.java copy profiling/timer-log/src/main/java/org/apache/camel/example/MyRouteBuilder.java => tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript1.java (53%) copy profiling/timer-log/src/main/java/org/apache/camel/example/MyRouteBuilder.java => tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript2.java (53%) copy profiling/timer-log/src/main/java/org/apache/camel/example/MyRouteBuilder.java => tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CSimpleScript3.java (53%) create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/CaseInsensitiveMapTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/ContainsIgnoreCaseTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/DefaultUuidGeneratorTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/DirectConcurrentTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/FastTypeConverterTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/JoorTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/LoadTypeConvertersTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/LogEndpointTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/NormalizeUriTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/SimpleExpressionTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/SimpleMockPlaceholderTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/SimpleMockTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/SimpleOperatorTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/SlowTypeConverterTest.java create mode 100644 tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/TypeConverterTest.java create mode 100644 tests/camel-jmh/src/test/resources/META-INF/LICENSE.txt create mode 100644 tests/camel-jmh/src/test/resources/META-INF/NOTICE.txt copy profiling/kafka-s3/src/main/resources/application.properties => tests/camel-jmh/src/test/resources/META-INF/services/org/apache/camel/csimple.properties (78%) copy profiling/kafka-s3/src/main/resources/application.properties => tests/camel-jmh/src/test/resources/log4j2.properties (67%) create mode 100644 tests/camel-jmh/src/test/resources/sample_soap.xml copy {profiling => tests}/pom.xml (90%)