From c27ea4d6159b6dd945f0fe87c3ccc906ecc23540 Mon Sep 17 00:00:00 2001 From: Dalton Bohning Date: Wed, 23 Oct 2024 22:08:00 +0000 Subject: [PATCH] test: hardcode come envs SKip-build: true Signed-off-by: Dalton Bohning --- src/tests/ftest/util/server_utils_params.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/tests/ftest/util/server_utils_params.py b/src/tests/ftest/util/server_utils_params.py index f991696566c..9571fcc36b0 100644 --- a/src/tests/ftest/util/server_utils_params.py +++ b/src/tests/ftest/util/server_utils_params.py @@ -432,18 +432,12 @@ class EngineYamlParameters(YamlParameters): # Engine environment variables that are required by provider type. REQUIRED_ENV_VARS = { - "common": [ - "D_LOG_FILE_APPEND_PID=1", - "DAOS_POOL_RF=4", - "CRT_EVENT_DELAY=1", - "COVFILE=/tmp/test.cov"], + "common": [], # let extra yaml set needed envs "ofi+tcp": [], "ofi+tcp;ofi_rxm": [], "ofi+verbs": [ "FI_OFI_RXM_USE_SRX=1"], - "ofi+cxi": [ - "FI_OFI_RXM_USE_SRX=1", - "CRT_MRC_ENABLE=1"], + "ofi+cxi": [], # let extra yaml set needed envs } def __init__(self, base_namespace, index, provider=None, max_storage_tiers=MAX_STORAGE_TIERS):