Skip to content
Snippets Groups Projects
Commit 90512ca6 authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

rust-matchers: fix behavior of `IncludeMatcher` with multiple includes

This change adds a test for this fix as well as an additional test case that
was useful in debugging this behavior.
parent b10e4c19
No related branches found
No related tags found
2 merge requests!229branching: merge stable into default,!220rust-matchers: fix behavior of `IncludeMatcher` with multiple includes
......@@ -791,7 +791,7 @@
dirs,
parents,
} = roots_dirs_and_parents(&ignore_patterns)?;
let prefix = ignore_patterns.iter().any(|k| match k.syntax {
let prefix = ignore_patterns.iter().all(|k| match k.syntax {
PatternSyntax::Path | PatternSyntax::RelPath => true,
_ => false,
});
......@@ -1094,6 +1094,31 @@
matcher.visit_children_set(HgPath::new(b"dir/subdir/x")),
VisitChildrenSet::This
);
// Test multiple patterns
let matcher = IncludeMatcher::new(vec![
IgnorePattern::new(PatternSyntax::RelPath, b"foo", Path::new("")),
IgnorePattern::new(PatternSyntax::Glob, b"g*", Path::new("")),
])
.unwrap();
assert_eq!(
matcher.visit_children_set(HgPath::new(b"")),
VisitChildrenSet::This
);
// Test multiple patterns
let matcher = IncludeMatcher::new(vec![IgnorePattern::new(
PatternSyntax::Glob,
b"**/*.exe",
Path::new(""),
)])
.unwrap();
assert_eq!(
matcher.visit_children_set(HgPath::new(b"")),
VisitChildrenSet::This
);
}
#[test]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment