You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2023/05/18 10:45:23 UTC

[jmeter] branch master updated (2a24991b9d -> 42f91f7fa8)

This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


    from 2a24991b9d chore: replace deprecated NullOutputStream.NULL_OUTPUT_STREAM with NullOutputStream.INSTANCE
     add 75754ce637 ci: add randomized matrix for better test coverage
     add 7c1603414f test: ignore ChangeCaseSpec in tr_TR locale
     add 42f91f7fa8 Avoid wrong results when Object.hashCode() collides, use IdentityHashMap instead of HashMap when key is TestElement

No new revisions were added by this update.

Summary of changes:
 .github/workflows/main.yml                         |  68 +++---
 .github/workflows/matrix.js                        | 164 ++++++++++++++
 .github/workflows/matrix_builder.js                | 242 +++++++++++++++++++++
 .../main/kotlin/build-logic.test-base.gradle.kts   |   9 +
 .../jmeter/timers/ConstantThroughputTimer.java     |  14 +-
 .../poissonarrivals/PreciseThroughputTimer.java    |  13 +-
 src/core/build.gradle.kts                          |   6 +-
 .../apache/jmeter/control/GenericController.java   |  16 +-
 .../java/org/apache/jmeter/gui/GuiPackage.java     |   3 +-
 .../apache/jmeter/testbeans/gui/TestBeanGUI.java   |   3 +-
 .../jmeter/testelement/AbstractTestElement.java    |   6 +-
 .../apache/jmeter/threads/AbstractThreadGroup.java |  13 +-
 .../org/apache/jmeter/threads/TestCompiler.java    |   9 +-
 .../jorphan/collections/SearchByClassTest.kt}      |  41 ++--
 .../apache/jmeter/functions/ChangeCaseSpec.groovy  |   3 +
 .../org/apache/jorphan/collections/HashTree.java   |  52 ++++-
 .../apache/jorphan/collections/ListedHashTree.java |  18 +-
 .../apache/jorphan/collections/SearchByClass.java  |   5 +-
 .../org/apache/jorphan/collections/IdentityKey.kt} |  33 ++-
 .../apache/jorphan/collections/IdentityKeyTest.kt  |  55 +++++
 .../http/util/accesslog/SessionFilter.java         |   4 +-
 .../http/util/accesslog/TestSessionFilter.java     |   4 +-
 .../jmeter/protocol/java/sampler/JavaSampler.java  |  11 +-
 xdocs/changes.xml                                  |   2 +
 24 files changed, 671 insertions(+), 123 deletions(-)
 create mode 100644 .github/workflows/matrix.js
 create mode 100644 .github/workflows/matrix_builder.js
 copy src/{components/src/main/java/org/apache/jmeter/visualizers/backend/WindowMode.java => core/src/test/kotlin/org/apache/jorphan/collections/SearchByClassTest.kt} (54%)
 copy src/{core/src/main/java/org/apache/jmeter/engine/JMeterEngineException.java => jorphan/src/main/kotlin/org/apache/jorphan/collections/IdentityKey.kt} (57%)
 create mode 100644 src/jorphan/src/test/kotlin/org/apache/jorphan/collections/IdentityKeyTest.kt