This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
from acc94580f9 GeoAPI `TransformTestCase` constructor no longer requires factories. new 213762448c Print the logging summary after all tests instead of after each class. new cfb4f1ff06 Make `LoggingWatcher` partially thread-safe, and add synchronization lock in the classes that use it. Tests that do not start other threads can be run in parallel, because we can use the thread identifier for separating the log records. Tests that start worker threads need to be alone. new 5e6524b6d6 Reduce the risk of deadlock in `CommonCRS` methods by reducing the size of synchronized blocks. new 8cdda23851 Enable JUnit parallel tests in `endorsed` modules. This requires the addition of a few resource locks. The 4 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: endorsed/build.gradle.kts | 3 + .../apache/sis/filter/sqlmm/RegistryTestCase.java | 57 +++-- .../apache/sis/image/StatisticsCalculatorTest.java | 18 +- .../apache/sis/metadata/iso/AllMetadataTest.java | 10 - .../iso/identification/DefaultResolutionTest.java | 25 +- .../maintenance/DefaultScopeDescriptionTest.java | 24 +- .../iso/spatial/DefaultGeorectifiedTest.java | 24 +- .../sis/metadata/sql/MetadataFallbackVerifier.java | 2 +- .../sis/metadata/sql/MetadataSourceTest.java | 2 + .../sis/metadata/sql/MetadataWriterTest.java | 2 + .../org/apache/sis/metadata/sql/TestDatabase.java | 33 ++- .../sis/xml/test/AnnotationConsistencyCheck.java | 11 +- .../test/org/apache/sis/xml/test/TestCase.java | 35 +++ .../main/org/apache/sis/referencing/CommonCRS.java | 281 +++++++++++---------- .../sis/parameter/ParameterMarshallingTest.java | 33 +-- .../sis/referencing/AuthorityFactoriesTest.java | 30 +-- .../test/org/apache/sis/referencing/CRSTest.java | 43 ++-- .../referencing/crs/DefaultProjectedCRSTest.java | 47 ++-- .../factory/ConcurrentAuthorityFactoryTest.java | 8 +- .../factory/MultiAuthoritiesFactoryTest.java | 32 +-- .../referencing/factory/sql/EPSGFactoryTest.java | 46 ++-- .../referencing/factory/sql/EPSGInstallerTest.java | 32 +-- .../operation/SingleOperationMarshallingTest.java | 24 +- .../apache/sis/test/integration/MetadataTest.java | 23 +- .../sis/test/integration/MetadataVerticalTest.java | 22 +- .../CC_GeneralOperationParameterTest.java | 32 +-- .../sis/storage/netcdf/base/FeatureSetTest.java | 13 + .../apache/sis/storage/netcdf/base/GridTest.java | 4 + .../apache/sis/storage/netcdf/base/TestCase.java | 42 ++- .../apache/sis/storage/sql/TestOnAllDatabases.java | 6 + .../sql/feature/SelectionClauseWriterTest.java | 2 +- .../sis/storage/sql/postgis/PostgresTest.java | 2 + .../main/org/apache/sis/pending/jdk/JDK16.java | 29 +++ .../apache/sis/test/FailureDetailsReporter.java | 22 +- .../org/apache/sis/test/LogRecordCollector.java | 122 ++++++--- .../test/org/apache/sis/test/LoggingWatcher.java | 134 +++++++++- .../test/org/apache/sis/test/TestCaseWithLogs.java | 76 ++++++ .../org/apache/sis/util/collection/CacheTest.java | 2 + 38 files changed, 799 insertions(+), 554 deletions(-) create mode 100644 endorsed/src/org.apache.sis.util/test/org/apache/sis/test/TestCaseWithLogs.java