From e55622e73a4c5d589683fdf57f68ec101faab890 Mon Sep 17 00:00:00 2001 From: mziolekda Date: Thu, 27 Jan 2022 13:31:51 +0100 Subject: [PATCH] Remove a bunch of ledger-on-memory tests (#12618) - vanila test -> low value, it is replicating what SoX test already does - legacy-error-codes -> low value, this functionality is on its way out - performance envelope -> low value, noone cares how fast that ledger is CHANGELOG_BEGIN CHANGELOG_END --- ledger/ledger-on-memory/BUILD.bazel | 47 ----------------------------- 1 file changed, 47 deletions(-) diff --git a/ledger/ledger-on-memory/BUILD.bazel b/ledger/ledger-on-memory/BUILD.bazel index 7620f2a02d03..183513a322ce 100644 --- a/ledger/ledger-on-memory/BUILD.bazel +++ b/ledger/ledger-on-memory/BUILD.bazel @@ -135,37 +135,6 @@ da_scala_binary( ], ) -# Full conformance test (single node setup) -conformance_test( - name = "conformance-test", - ports = [6865], - server = ":app", - server_args = [ - "--contract-id-seeding=testing-weak", - "--participant=participant-id=example,port=6865", - ], - test_tool_args = [ - "--verbose", - ], -) - -# Full conformance test asserting the Ledger API returning legacy error codes -conformance_test( - name = "conformance-test-legacy-error-codes", - ports = [6865], - server = ":app", - server_args = [ - "--contract-id-seeding=testing-weak", - "--participant=participant-id=example,port=6865", - "--index-append-only-schema", - "--use-pre-1.18-error-codes", - ], - test_tool_args = [ - "--verbose", - "--exclude=CommandDeduplicationPeriodValidationIT", # The test expects the new error codes. - ], -) - # Full conformance test (two participant setup) conformance_test( name = "conformance-test-multi-participant", @@ -203,19 +172,3 @@ conformance_test( "--exclude=ConfigManagementServiceIT", ], ) - -conformance_test( - name = "benchmark-performance-envelope", - ports = [6865], - server = ":app", - server_args = [ - "--contract-id-seeding=testing-weak", - "--participant=participant-id=example,port=6865", - ], - test_tool_args = [ - "--verbose", - "--perf-tests=PerformanceEnvelope.Throughput.TwentyOPS", - "--perf-tests=PerformanceEnvelope.Latency.1000ms", - "--perf-tests=PerformanceEnvelope.TransactionSize.1000KB", - ], -)