Adapt full-path glob test for Windows

This commit is contained in:
sharkdp 2019-09-15 15:51:18 +02:00 committed by David Peter
parent eac20a8132
commit 588888112a
1 changed files with 7 additions and 1 deletions

View File

@ -273,8 +273,14 @@ fn test_glob_searches() {
fn test_full_path_glob_searches() {
let te = TestEnv::new(DEFAULT_DIRS, DEFAULT_FILES);
#[cfg(not(windows))]
let pattern = "**/one/**/*.foo";
#[cfg(windows)]
let pattern = "**\\one\\**\\*.foo";
te.assert_output(
&["--glob", "--full-path", "**/one/**/*.foo"],
&["--glob", "--full-path", pattern],
"one/b.foo
one/two/c.foo
one/two/three/d.foo",