tests/test-issue433
author Greg Ward <greg-hg@gerg.ca>
Sun, 12 Jul 2009 22:33:00 -0400
changeset 9121 a85a3d398cc3
parent 8936 1de6e7e1bb9f
permissions -rwxr-xr-x
test-fetch: fix non-portable sed regex. (s/...\+/.../ appears to be a GNU-ism: this test broke on OS X and NetBSD. Changing \+ to * fixes it, although that is a slightly less strict regex.)

#!/bin/sh
# http://mercurial.selenic.com/bts/issue433

hg init a
cd a
echo a > a
hg commit -Ama

hg parents -r 0 doesnotexist
true