diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 9bc9c7cbbe3f0..00dfe9aca3940 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -2686,9 +2686,11 @@ mod tests { use super::Options; impl ExternEntry { - fn new_public(location: Option) -> ExternEntry { - let mut locations = BTreeSet::new(); - locations.insert(location); + fn new_public, + I: IntoIterator>>(locations: I) -> ExternEntry { + let locations: BTreeSet<_> = locations.into_iter().map(|o| o.map(|s| s.into())) + .collect(); + ExternEntry { locations, is_private_dep: false @@ -2708,10 +2710,6 @@ mod tests { BTreeMap::from_iter(entries.into_iter()) } - fn mk_set(entries: Vec) -> BTreeSet { - BTreeSet::from_iter(entries.into_iter()) - } - // When the user supplies --test we should implicitly supply --cfg test #[test] fn test_switch_implies_cfg_test() { @@ -2829,45 +2827,33 @@ mod tests { v1.externs = Externs::new(mk_map(vec![ ( String::from("a"), - mk_set(vec![ExternEntry::new_public(Some(String::from("b"))), - ExternEntry::new_public(Some(String::from("c"))) - ]), + ExternEntry::new_public(vec![Some("b"), Some("c")]) ), ( String::from("d"), - mk_set(vec![ExternEntry::new_public(Some(String::from("e"))), - ExternEntry::new_public(Some(String::from("f"))) - ]), + ExternEntry::new_public(vec![Some("e"), Some("f")]) ), ])); v2.externs = Externs::new(mk_map(vec![ ( String::from("d"), - mk_set(vec![ExternEntry::new_public(Some(String::from("e"))), - ExternEntry::new_public(Some(String::from("f"))) - ]), + ExternEntry::new_public(vec![Some("e"), Some("f")]) ), ( String::from("a"), - mk_set(vec![ExternEntry::new_public(Some(String::from("b"))), - ExternEntry::new_public(Some(String::from("c"))) - ]), + ExternEntry::new_public(vec![Some("b"), Some("c")]) ), ])); v3.externs = Externs::new(mk_map(vec![ ( String::from("a"), - mk_set(vec![ExternEntry::new_public(Some(String::from("b"))), - ExternEntry::new_public(Some(String::from("c"))) - ]), + ExternEntry::new_public(vec![Some("b"), Some("c")]) ), ( String::from("d"), - mk_set(vec![ExternEntry::new_public(Some(String::from("f"))), - ExternEntry::new_public(Some(String::from("e"))) - ]), + ExternEntry::new_public(vec![Some("f"), Some("e")]) ), ]));