Mercurial > hg
diff tests/test-mq.t @ 24763:a698e088ad29
tags: explicitly log which tags cache file is being written
We now have multiple tags cache files. Record exactly which file is
being written. This should help aid debugging into performance issues
with any single filter.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Thu, 16 Apr 2015 11:59:36 -0400 |
parents | 410f3856196f |
children | ce26928cbe41 |
line wrap: on
line diff
--- a/tests/test-mq.t Thu Apr 16 11:54:13 2015 -0400 +++ b/tests/test-mq.t Thu Apr 16 11:59:36 2015 -0400 @@ -311,12 +311,12 @@ qpush with dump of tag cache Dump the tag cache to ensure that it has exactly one head after qpush. - $ rm -f .hg/cache/tags-visible + $ rm -f .hg/cache/tags2-visible $ hg tags > /dev/null -.hg/cache/tags-visible (pre qpush): +.hg/cache/tags2-visible (pre qpush): - $ cat .hg/cache/tags-visible + $ cat .hg/cache/tags2-visible 1 [\da-f]{40} (re) $ hg qpush applying test.patch @@ -325,9 +325,9 @@ 2: draft $ hg tags > /dev/null -.hg/cache/tags-visible (post qpush): +.hg/cache/tags2-visible (post qpush): - $ cat .hg/cache/tags-visible + $ cat .hg/cache/tags2-visible 2 [\da-f]{40} (re) $ checkundo qpush $ cd ..