Skip to content
Snippets Groups Projects
Commit 0aafeded7957 authored by Matt Harbison's avatar Matt Harbison
Browse files

test-sparse: make the '.hg' exclusion filter Windows compatible

parent f00edef84c3b
No related branches found
No related tags found
No related merge requests found
......@@ -290,7 +290,7 @@
$ touch dir1/notshown
$ hg commit -A dir1/notshown -m "notshown"
$ hg debugsparse --include 'dir1/dir2'
$ $PYTHON $TESTDIR/list-tree.py . | grep -v ./.hg
$ $PYTHON $TESTDIR/list-tree.py . | egrep -v '\.[\/]\.hg'
./
./dir1/
./dir1/dir2/
......@@ -298,7 +298,7 @@
./hide.orig
$ hg debugsparse --delete 'dir1/dir2'
$ hg debugsparse --include 'glob:dir1/dir2'
$ $PYTHON $TESTDIR/list-tree.py . | grep -v ./.hg
$ $PYTHON $TESTDIR/list-tree.py . | egrep -v '\.[\/]\.hg'
./
./dir1/
./dir1/dir2/
......
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