From 66f72d6ac900708ed02cf125714dbc4325783588 Mon Sep 17 00:00:00 2001 From: Anastasia Klimchuk Date: Mon, 17 Jan 2022 14:27:34 +1100 Subject: tests: Convert erase chip tests to libflashrom API As a part of effort to convert command line (and everything else) to be libflashrom users, chip tests need to be converted as well. TEST=ninja test Change-Id: I38529a6b4d79882f50068b3628089b178dbe0a50 Signed-off-by: Anastasia Klimchuk Reviewed-on: https://review.coreboot.org/c/flashrom/+/61137 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- tests/chip.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/chip.c b/tests/chip.c index 9c06fe702..0ea3a3541 100644 --- a/tests/chip.c +++ b/tests/chip.c @@ -19,6 +19,7 @@ #include "chipdrivers.h" #include "flash.h" +#include "libflashrom.h" #include "programmer.h" #define MOCK_CHIP_SIZE (8*MiB) @@ -182,7 +183,7 @@ void erase_chip_test_success(void **state) setup_chip(&flashctx, &layout, &mock_chip, param); printf("Erase chip operation started.\n"); - assert_int_equal(0, do_erase(&flashctx)); + assert_int_equal(0, flashrom_flash_erase(&flashctx)); printf("Erase chip operation done.\n"); teardown(&layout); @@ -204,7 +205,7 @@ void erase_chip_with_dummyflasher_test_success(void **state) setup_chip(&flashctx, &layout, &mock_chip, param_dup); printf("Erase chip operation started.\n"); - assert_int_equal(0, do_erase(&flashctx)); + assert_int_equal(0, flashrom_flash_erase(&flashctx)); printf("Erase chip operation done.\n"); teardown(&layout); -- cgit v1.2.3