From f6b809546e5a24f887138cc9050219c86349a35a Mon Sep 17 00:00:00 2001 From: kalyan alle Date: Mon, 14 Apr 2025 06:46:08 +0000 Subject: [PATCH] Fix: fixes for segfaults in device specific sysman tests Related-To: VLCLJ-2460 Signed-off-by: kalyan alle --- .../sysman/test_sysman_device/src/test_sysman_device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp b/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp index 90e2c6825..0eaaf9006 100644 --- a/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp +++ b/conformance_tests/sysman/test_sysman_device/src/test_sysman_device.cpp @@ -63,7 +63,7 @@ class SysmanDeviceTest : public lzt::SysmanCtsClass {}; #endif // USE_ZESINIT void run_device_hierarchy_child_process() { - fs::path helper_path(fs::current_path() / "sysman_device"); + fs::path helper_path(fs::current_path()); std::vector paths; paths.push_back(helper_path); bp::ipstream child_output; @@ -97,7 +97,7 @@ static void run_child_process(const std::string &device_hierarchy) { bp::environment child_env = env; child_env["ZE_FLAT_DEVICE_HIERARCHY"] = device_hierarchy; - fs::path helper_path(fs::current_path() / "sysman_device"); + fs::path helper_path(fs::current_path()); std::vector paths; paths.push_back(helper_path); bp::ipstream child_output;