Mercurial > hg
view tests/test-bisect @ 3025:d9b8d28c0b94
Find the system's MD5 binary.
Different binaries calculate MD5 checksums on different systems. Try
a couple known programs and only calculate and verify the checksum
if they exist. This should silence warnings on eg OpenBSD.
author | Will Maier <willmaier@ml1.net> |
---|---|
date | Fri, 28 Jul 2006 13:46:19 -0500 |
parents | 61fcd9fac434 |
children | 9079081b8982 |
line wrap: on
line source
#!/bin/sh set -e echo "[extensions]" >> $HGRCPATH echo "hbisect=" >> $HGRCPATH echo % init hg init echo % committing changes count=0 echo > a while test $count -lt 32 ; do echo 'a' >> a test $count -eq 0 && hg add hg ci -m "msg $count" -d "$count 0" echo % committed changeset $count count=`expr $count + 1` done echo % log hg log echo % hg up -C hg up -C echo % bisect test hg bisect init hg bisect bad hg bisect good 1 hg bisect good hg bisect good hg bisect good hg bisect bad hg bisect good