mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-04 07:15:18 +02:00
flashrom_tester: Add _into_file to function names
Rename Flashrom trait function names to reflect that the data is read to/from a file provided as an argument. BUG=None BRANCH=None TEST=cargo test; cargo check Change-Id: I0015c9bf64349a5512dbdb0ef6f3dad38aa2fd8e Signed-off-by: Evan Benn <evanbenn@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66956 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
This commit is contained in:

committed by
Edward O'Callaghan

parent
1acef16895
commit
b41bb5622c
@ -243,7 +243,8 @@ fn elog_sanity_test(env: &mut TestEnv) -> TestResult {
|
||||
env.ensure_golden()?;
|
||||
|
||||
const ELOG_RW_REGION_NAME: &str = "RW_ELOG";
|
||||
env.cmd.read_region(ELOG_FILE, ELOG_RW_REGION_NAME)?;
|
||||
env.cmd
|
||||
.read_region_into_file(ELOG_FILE, ELOG_RW_REGION_NAME)?;
|
||||
|
||||
// Just checking for the magic numer
|
||||
// TODO: improve this test to read the events
|
||||
|
Reference in New Issue
Block a user