Allow multiple files in corpus

This commit is contained in:
Omar Abdulla
2025-08-16 18:38:56 +03:00
parent 09d56f5177
commit c33803d427
2 changed files with 57 additions and 26 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ fn collect_corpora(args: &Arguments) -> anyhow::Result<HashMap<Corpus, Vec<Metad
let corpus = Corpus::try_from_path(path)?;
tracing::info!("found corpus: {}", path.display());
let tests = corpus.enumerate_tests();
tracing::info!("corpus '{}' contains {} tests", &corpus.name, tests.len());
tracing::info!("corpus '{}' contains {} tests", &corpus.name(), tests.len());
corpora.insert(corpus, tests);
}