1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-10-14 06:20:25 +02:00
Files
flashrom/tests/nicrealtek.c
Anastasia Klimchuk 7d6a243779 tests: Use SPDX in headers
Change-Id: I3a8a8e59cbed871e0ecf953e547de56c0656e112
Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/89361
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Peter Marheine <pmarheine@chromium.org>
Reviewed-by: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2025-10-11 06:02:44 +00:00

26 lines
628 B
C

/*
* This file is part of the flashrom project.
*
* SPDX-License-Identifier: GPL-2.0-only
* SPDX-FileCopyrightText: 2021 Google LLC
*/
#include "lifecycle.h"
#if CONFIG_NICREALTEK == 1
void nicrealtek_basic_lifecycle_test_success(void **state)
{
struct io_mock_fallback_open_state nicrealtek_fallback_open_state = {
.noc = 0,
.paths = { NULL },
};
const struct io_mock nicrealtek_io = {
.fallback_open_state = &nicrealtek_fallback_open_state,
};
run_basic_lifecycle(state, &nicrealtek_io, &programmer_nicrealtek, "");
}
#else
SKIP_TEST(nicrealtek_basic_lifecycle_test_success)
#endif /* CONFIG_NICREALTEK */