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

tests: avoid a cascading failure on Windows

The `identify --debug` command here on Windows emits

    skip updating dirstate: identity mismatch

because of the debug switch, which got captured and added to `.hgtags`, and then
hijinx ensued.  The point of `--debug` seemed to be to get the long hash, so
just do that with templating.  I have not idea if the message is indicating a
problem- there seems to be many more of them in other tests that are not present
on Linux.
parent 4ed9efb25bc7
3 merge requests!728Merge stable into default,!723Draft: never inline changelog,!719Initial Windows fixes
......@@ -72,7 +72,7 @@
Create local tag with long name:
$ T=`hg identify --debug --id`
$ T=`hg identify -r . -T '{node}'`
$ hg tag -l "This is a local tag with a really long name!"
$ hg tags
tip 0:acb14030fe0a
......
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