Mercurial > hg
annotate tests/testlib/obsmarker-common.sh @ 45144:c93dd9d9f1e6
discovery: change users of `outgoing.missingheads` to `outgoing.ancestorsof`
The attribute `missingheads` was recently renamed to `ancestorsof`, as it,
despite the old name, doesn’t contain the missing heads but the changesets that
were requested (including ancestors) for the outgoing operation.
Changing all the users enables to print a warning if the old name is used.
There is a good chance that some of the users are buggy because of the old name.
Changing them to use the new name makes it more obvious that they are buggy. All
users need to be reviewed for bugs. When sending patches for fixing them, the
change will be more obvious without having to explain again and again the
discrepancy of the old attribute name and what it actually contained.
author | Manuel Jacob <me@manueljacob.de> |
---|---|
date | Fri, 17 Jul 2020 09:20:48 +0200 |
parents | 86f39a89b63e |
children |
rev | line source |
---|---|
32879
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
1 mkcommit() { |
42968
86f39a89b63e
testlib: allow more argument to mkcommit
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32879
diff
changeset
|
2 name="$1" |
86f39a89b63e
testlib: allow more argument to mkcommit
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32879
diff
changeset
|
3 shift |
86f39a89b63e
testlib: allow more argument to mkcommit
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32879
diff
changeset
|
4 echo "$name" > "$name" |
86f39a89b63e
testlib: allow more argument to mkcommit
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32879
diff
changeset
|
5 hg add "$name" |
86f39a89b63e
testlib: allow more argument to mkcommit
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32879
diff
changeset
|
6 hg ci -m "$name" "$@" |
32879
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
7 } |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
8 |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
9 getid() { |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
10 hg log --hidden --template '{node}\n' --rev "$1" |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
11 } |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
12 |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
13 cat >> $HGRCPATH <<EOF |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
14 [alias] |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
15 debugobsolete=debugobsolete -d '0 0' |
1858fc2327ef
template: add predecessors template
Boris Feld <boris.feld@octobus.net>
parents:
diff
changeset
|
16 EOF |