##// END OF EJS Templates
test-sparse: make the '.hg' exclusion filter Windows compatible
Matt Harbison -
r35788:0aafeded default
parent child Browse files
Show More
@@ -290,7 +290,7 Mix files and subdirectories, both "glob
290 290 $ touch dir1/notshown
291 291 $ hg commit -A dir1/notshown -m "notshown"
292 292 $ hg debugsparse --include 'dir1/dir2'
293 $ $PYTHON $TESTDIR/list-tree.py . | grep -v ./.hg
293 $ $PYTHON $TESTDIR/list-tree.py . | egrep -v '\.[\/]\.hg'
294 294 ./
295 295 ./dir1/
296 296 ./dir1/dir2/
@@ -298,7 +298,7 Mix files and subdirectories, both "glob
298 298 ./hide.orig
299 299 $ hg debugsparse --delete 'dir1/dir2'
300 300 $ hg debugsparse --include 'glob:dir1/dir2'
301 $ $PYTHON $TESTDIR/list-tree.py . | grep -v ./.hg
301 $ $PYTHON $TESTDIR/list-tree.py . | egrep -v '\.[\/]\.hg'
302 302 ./
303 303 ./dir1/
304 304 ./dir1/dir2/
General Comments 0
You need to be logged in to leave comments. Login now