mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-28 15:33:42 +02:00
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 <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/61137 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
This commit is contained in:
parent
3ae04a1204
commit
66f72d6ac9
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user