test: disable debug flag for USM allocation pool manager in L0 tests

whenever test needs to verify the default behavior, value of -1 can be set

Related-To: NEO-16307
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-10-10 20:48:18 +00:00
committed by Compute-Runtime-Automation
parent db0b4a616c
commit 6731e35695

View File

@@ -28,13 +28,13 @@ void cleanTestHelpers() {
bool sysmanUltsEnable = false;
void applyWorkarounds() {
auto sysmanUltsEnableEnv = getenv("NEO_L0_SYSMAN_ULTS_ENABLE");
if (sysmanUltsEnableEnv != nullptr) {
sysmanUltsEnable = (strcmp(sysmanUltsEnableEnv, "1") == 0);
}
L0::globalDriverHandles = new std::vector<_ze_driver_handle_t *>;
L0::globalDriverHandles->reserve(1);
debugManager.flags.EnableUsmAllocationPoolManager.set(0);
}
void setupTestFiles(std::string testBinaryFiles, int32_t revId) {