Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions case-lib/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@ SUDO_LEVEL=${SUDO_LEVEL:-}
# in CI, which is controlled by sof-framework. In manual run, user can
# override the default value.
SOF_TEST_INTERVAL=${SOF_TEST_INTERVAL:-5}

# Logger is not always supported, we want sof-test to run even
# without logger.
LOGGER_MODE=${LOGGER_MODE:-true}
2 changes: 1 addition & 1 deletion case-lib/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ is_zephyr()

logger_disabled()
{
[[ ${OPT_VAL['s']} -eq 0 ]]
[[ ${OPT_VAL['s']} -eq 0 ]] || [[ "$LOGGER_MODE" == "false" ]]
}

print_module_params()
Expand Down