diff options
Diffstat (limited to 'util/flashrom_tester/src/main.rs')
-rw-r--r-- | util/flashrom_tester/src/main.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/flashrom_tester/src/main.rs b/util/flashrom_tester/src/main.rs index 69bb92db..dd09f9a3 100644 --- a/util/flashrom_tester/src/main.rs +++ b/util/flashrom_tester/src/main.rs @@ -113,6 +113,10 @@ fn main() { ); debug!("Args parsed and logging initialized OK"); + debug!("Collecting crossystem info"); + let crossystem = + flashrom_tester::utils::collect_crosssystem(&[]).expect("could not run crossystem"); + let flashrom_path = matches .value_of("flashrom_binary") .expect("flashrom_binary should be required"); @@ -143,6 +147,7 @@ fn main() { output_format, test_names, Some(handle_sigint()), + crossystem, ) { eprintln!("Failed to run tests: {:?}", e); std::process::exit(1); |