From d06f275e2a94fc20c734ffd0cd8f2ce5c46cf5ae Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Mon, 8 Jul 2024 18:48:03 +0300 Subject: [PATCH] case-lib: remove check for log ldc file Checking for ldc (log dictionary) file existance as a way to decide whether to enable or disable logging during a test case, is no longer applicable as SOF supports multiple firmware logging solutions that do not use an ldc file. Remove the check as it no longer makes sense. Link: https://github.com/thesofproject/sof/issues/9286 Signed-off-by: Kai Vehmanen --- case-lib/lib.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/case-lib/lib.sh b/case-lib/lib.sh index 3294c39e..519e4205 100644 --- a/case-lib/lib.sh +++ b/case-lib/lib.sh @@ -874,13 +874,6 @@ is_ipc4() logger_disabled() { - local ldcFile - # Some firmware/OS configurations do not support logging. - ldcFile=$(find_ldc_file) || { - dlogi '.ldc dictionary file not found, SOF logs collection disabled' - return 0 # 0 is 'true' - } - # Disable logging when available... if [ ${OPT_VAL['s']} -eq 0 ]; then return 0