zephyr/tests/drivers/bbram/generic/src/fixture.c
Yuval Peress 4efa11ebf7 bbram: Add tests
Add emulation testing for it8xxx2, npcx, and mcp7940n. The test is made
to be generic and uses the backend API in order to verify both read and
write functionality. Additional tests are made for the API's limits when
reading/writing out of bounds.

Fixes #65018

Signed-off-by: Yuval Peress <peress@google.com>
2024-01-12 09:59:31 +01:00

26 lines
611 B
C

/*
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/device.h>
#include <zephyr/drivers/emul.h>
#include <zephyr/ztest.h>
#include "fixture.h"
ZTEST_SUITE(generic, NULL, NULL, NULL, NULL, NULL);
const struct emul *get_and_check_emul(const struct device *dev)
{
zassert_not_null(dev, "Cannot get device pointer. Is this driver properly instantiated?");
const struct emul *emul = emul_get_binding(dev->name);
/* Skip this sensor if there is no emulator or backend loaded. */
if (emul == NULL || emul->backend_api == NULL) {
ztest_test_skip();
}
return emul;
}