Skip to content

Commit

Permalink
crypto/tests: do not use RP_FIXTURE_ENV for ossl_context_service tests
Browse files Browse the repository at this point in the history
`ossl_context_service` only works if we have one seastar shard per
thread. RP_FIXTURE_ENV env variable disables the service to make it safe
to run multiple seastar shards in a single thread. A lot of tests need
this, so it is set by default. However, to test the service itself we
need to enable it.
  • Loading branch information
bashtanov committed Jan 31, 2025
1 parent 1dbd236 commit ae1d90b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/v/crypto/tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ redpanda_cc_gtest(
cpu = 2,
data = common_data_deps,
defines = ["FIPS_MODULE_REQUIRED"],
env = common_env,
env = common_env | {"RP_FIXTURE_ENV": ""},
deps = [
":crypto_test_utils",
":ossl_context_service_test_base",
Expand All @@ -192,7 +192,7 @@ redpanda_cc_gtest(
cpu = 2,
data = common_data_deps,
defines = ["FIPS_MODULE_REQUIRED"],
env = common_env,
env = common_env | {"RP_FIXTURE_ENV": ""},
deps = [
":crypto_test_utils",
":ossl_context_service_test_base",
Expand Down

0 comments on commit ae1d90b

Please sign in to comment.