Skip to content
Snippets Groups Projects
Commit e8302d9c authored by David M. Carr's avatar David M. Carr
Browse files

tests: fix for hg 1.5.4

On Hg 1.5.4, util.version() appears to return "unknown", which wasn't an
expected value in the version parsing logic in test-incoming and test-outgoing.
The net result of the change is that test-incoming no longer fails in 1.5.4,
but is skipped instead.
parent 493b55cb
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,8 @@
python -c 'import dulwich, dulwich.repo' || exit 80
# This test only works on hg 1.7 and later
python -c 'from mercurial import util ; assert util.version() > "1.7"' || exit 80
python -c 'from mercurial import util ; assert \
util.version() != "unknown" and util.version() > "1.7"' || exit 80
# bail early if the user is already running git-daemon
echo hi | nc localhost 9418 2>/dev/null && exit 80
......
......@@ -7,7 +7,8 @@
# Fails for some reason, need to investigate
# "$TESTDIR/hghave" git || exit 80
python -c 'from mercurial import util ; assert util.version() < "1.8"' || exit 80
python -c 'from mercurial import util ; assert \
util.version() == "unknown" or util.version() < "1.8"' || exit 80
# bail if the user does not have dulwich
python -c 'import dulwich, dulwich.repo' || exit 80
......
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