tests/testlib/obsmarker-common.sh
author Raphaël Gomès <rgomes@octobus.net>
Mon, 16 Dec 2019 11:28:14 +0100
changeset 43890 d8a96cebf75d
parent 42968 86f39a89b63e
permissions -rw-r--r--
rust-warnings: fix warnings in tests It turns out that I also missed those warnings inside tests. This should be the last of them. One day we will get rid of this interface anyway. Differential Revision: https://phab.mercurial-scm.org/D7678

mkcommit() {
   name="$1"
   shift
   echo "$name" > "$name"
   hg add "$name"
   hg ci -m "$name" "$@"
}

getid() {
   hg log --hidden --template '{node}\n' --rev "$1"
}

cat >> $HGRCPATH <<EOF
[alias]
debugobsolete=debugobsolete -d '0 0'
EOF