mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 07:02:34 +02:00

This allows unit tests to build on non-Linux platforms. BUG=b:237606255 TEST=unit tests compile on two environments: 1) FreeBSD 13.1-RELEASE-p2 GENERIC amd64 2) Debian 5.17.11 x86_64 GNU/Linux Change-Id: Icdb1b0cb29c5d62187153788ad5e0e631e8d0b62 TICKET: https://ticket.coreboot.org/issues/411 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/67311 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Thomas Heijligen <src@posteo.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* Copyright 2021 Google LLC
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __LIFECYCLE_H__
|
|
#define __LIFECYCLE_H__
|
|
|
|
#include <include/test.h>
|
|
#include <string.h>
|
|
#if defined(__linux__) && !defined(__ANDROID__)
|
|
#include <linux/spi/spidev.h>
|
|
#endif
|
|
|
|
#include "tests.h"
|
|
#include "libflashrom.h"
|
|
#include "io_mock.h"
|
|
#include "programmer.h"
|
|
#include "spi.h"
|
|
|
|
#define SKIP_TEST(name) \
|
|
void name (void **state) { skip(); }
|
|
|
|
void run_basic_lifecycle(void **state, const struct io_mock *io,
|
|
const struct programmer_entry *prog, const char *param);
|
|
|
|
void run_probe_lifecycle(void **state, const struct io_mock *io,
|
|
const struct programmer_entry *prog, const char *param, const char *const chip_name);
|
|
|
|
void run_init_error_path(void **state, const struct io_mock *io,
|
|
const struct programmer_entry *prog, const char *param, const int error_code);
|
|
#endif /* __LIFECYCLE_H__ */
|