Skip to content

Commit 76711d3

Browse files
kv2019imarc-hb
authored andcommitted
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 <kai.vehmanen@linux.intel.com>
1 parent 70c9d34 commit 76711d3

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

case-lib/lib.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -874,13 +874,6 @@ is_ipc4()
874874

875875
logger_disabled()
876876
{
877-
local ldcFile
878-
# Some firmware/OS configurations do not support logging.
879-
ldcFile=$(find_ldc_file) || {
880-
dlogi '.ldc dictionary file not found, SOF logs collection disabled'
881-
return 0 # 0 is 'true'
882-
}
883-
884877
# Disable logging when available...
885878
if [ ${OPT_VAL['s']} -eq 0 ]; then
886879
return 0

0 commit comments

Comments
 (0)