Extend coredump_backend tests: * fix COREDUMP_CMD_VERIFY_STORED_DUMP test was not executed. * add tests for these coredump commands: - COREDUMP_QUERY_GET_STORED_DUMP_SIZE, - COREDUMP_CMD_INVALIDATE_STORED_DUMP, - COREDUMP_CMD_ERASE_STORED_DUMP, - COREDUMP_CMD_CLEAR_ERROR. * extend the out-of-the-treee example 'empty' backend to execute the new tests. * fix the test's cmake project name. Signed-off-by: Dmitrii Golovanov <dmitrii.golovanov@intel.com>
18 lines
472 B
Plaintext
18 lines
472 B
Plaintext
# Copyright (c) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "Kconfig.zephyr"
|
|
|
|
config TEST_STORED_COREDUMP
|
|
bool "Expected backend has coredump storage."
|
|
help
|
|
Set if the test expects coredump backend with storage.
|
|
|
|
config TEST_STORED_DUMP_SIZE
|
|
int "Expected backend's coredump storage size."
|
|
default 0
|
|
help
|
|
Test expects coredump backend storage with the size given.
|
|
If zero, then it is ignored and not compared with the actual size.
|