diff options
author | Anastasia Klimchuk <aklm@chromium.org> | 2022-06-23 10:37:00 +1000 |
---|---|---|
committer | Anastasia Klimchuk <aklm@chromium.org> | 2022-06-28 22:05:36 +0000 |
commit | 71488a8c13a981466b3060f7780d165eeffba87f (patch) | |
tree | 1ac9d671b581194bf7df39662bacc8796c2d5f2a /tests | |
parent | eb63685e19ae073e88d209cec0bda2ee42628e4d (diff) | |
download | flashrom-71488a8c13a981466b3060f7780d165eeffba87f.tar.gz flashrom-71488a8c13a981466b3060f7780d165eeffba87f.tar.bz2 flashrom-71488a8c13a981466b3060f7780d165eeffba87f.zip |
tests: Remove unnecessary static keyword from lifecycle tests
Lifecycle tests had local struct declared with static keyword, but
static was not necessary for them. So, removing.
BUG=b:233816068
TEST=ninja test
Change-Id: If844d07ec42b878bd0da8460655be45e865f089f
Signed-off-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/65323
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Evan Benn <evanbenn@google.com>
Reviewed-by: Joursoir <chat@joursoir.net>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Thomas Heijligen <src@posteo.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lifecycle.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/lifecycle.c b/tests/lifecycle.c index 614e4bf1..9624c4f1 100644 --- a/tests/lifecycle.c +++ b/tests/lifecycle.c @@ -87,7 +87,7 @@ void run_probe_lifecycle(void **state, const struct io_mock *io, #if CONFIG_DUMMY == 1 void dummy_basic_lifecycle_test_success(void **state) { - static struct io_mock_fallback_open_state dummy_fallback_open_state = { + struct io_mock_fallback_open_state dummy_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -100,7 +100,7 @@ void dummy_basic_lifecycle_test_success(void **state) void dummy_probe_lifecycle_test_success(void **state) { - static struct io_mock_fallback_open_state dummy_fallback_open_state = { + struct io_mock_fallback_open_state dummy_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -113,7 +113,7 @@ void dummy_probe_lifecycle_test_success(void **state) void dummy_probe_variable_size_test_success(void **state) { - static struct io_mock_fallback_open_state dummy_fallback_open_state = { + struct io_mock_fallback_open_state dummy_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -133,7 +133,7 @@ void dummy_probe_variable_size_test_success(void **state) #if CONFIG_NICREALTEK == 1 void nicrealtek_basic_lifecycle_test_success(void **state) { - static struct io_mock_fallback_open_state nicrealtek_fallback_open_state = { + struct io_mock_fallback_open_state nicrealtek_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -218,7 +218,7 @@ static void raiden_debug_libusb_free_config_descriptor(void *state, struct libus void raiden_debug_basic_lifecycle_test_success(void **state) { - static struct io_mock_fallback_open_state raiden_debug_fallback_open_state = { + struct io_mock_fallback_open_state raiden_debug_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -270,7 +270,7 @@ static int dediprog_libusb_control_transfer(void *state, void dediprog_basic_lifecycle_test_success(void **state) { - static struct io_mock_fallback_open_state dediprog_fallback_open_state = { + struct io_mock_fallback_open_state dediprog_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -346,7 +346,7 @@ static int linux_mtd_fclose(void *state, FILE *fp) void linux_mtd_probe_lifecycle_test_success(void **state) { struct linux_mtd_io_state linux_mtd_io_state = { NULL }; - static struct io_mock_fallback_open_state linux_mtd_fallback_open_state = { + struct io_mock_fallback_open_state linux_mtd_fallback_open_state = { .noc = 0, .paths = { NULL }, }; @@ -403,7 +403,7 @@ void linux_spi_probe_lifecycle_test_success(void **state) * Current implementation tests a particular path of the init procedure. * Specifically, it is reading the buffer size from sysfs. */ - static struct io_mock_fallback_open_state linux_spi_fallback_open_state = { + struct io_mock_fallback_open_state linux_spi_fallback_open_state = { .noc = 0, .paths = { "/dev/null", NULL }, .flags = { O_RDWR }, @@ -449,7 +449,7 @@ static int realtek_mst_write(void *state, int fd, const void *buf, size_t sz) void realtek_mst_basic_lifecycle_test_success(void **state) { - static struct io_mock_fallback_open_state realtek_mst_fallback_open_state = { + struct io_mock_fallback_open_state realtek_mst_fallback_open_state = { .noc = 0, .paths = { "/dev/i2c-254", NULL }, .flags = { O_RDWR }, |