Mercurial > hg
view tests/test-debugbuilddag @ 11541:ab9fa7a85dd9 stable
filelog: cmp: don't read data if hashes are identical (issue2273)
filelog.renamed() is an expensive call as it reads the filelog if p1 == nullid.
It's more efficient to first compute the hash, and to bail early if
the computed hash is the same as the stored nodeid.
'samehashes' variable is not strictly necessary, but helps for comprehension.
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Mon, 05 Jul 2010 19:49:54 +0900 |
parents | 0f3c8a47960e |
children | fc360de66217 |
line wrap: on
line source
#! /bin/sh echo "[extensions]" >> $HGRCPATH echo "graphlog=" >> $HGRCPATH echo ---- overwritten and appended files rm -rf repo hg init repo cd repo hg debugbuilddag '+2:f +3:p2 @temp <f+4 @default /p2 +2' -q -oa echo -- dag hg debugdag -t -b echo -- glog hg glog --template '{rev}: {desc} [{branches}] @ {date}\n' echo -- glog of hg glog --template '{rev}: {desc} [{branches}]\n' of echo -- glog af hg glog --template '{rev}: {desc} [{branches}]\n' af echo -- tags hg tags -v echo -- cat of hg cat of echo -- cat af hg cat af cd .. echo ---- new and mergeable files rm -rf repo hg init repo cd repo hg debugbuilddag '+2:f +3:p2 @temp <f+4 @default /p2 +2' -q -mn echo -- dag hg debugdag -t -b echo -- glog hg glog --template '{rev}: {desc} [{branches}] @ {date}\n' echo -- glog mf hg glog --template '{rev}: {desc} [{branches}]\n' mf echo -- man r4 hg manifest -r4 echo -- cat r4 mf hg cat -r4 mf echo -- man r8 hg manifest -r8 echo -- cat r8 mf hg cat -r8 mf echo -- man hg manifest echo -- cat mf hg cat mf cd .. echo ---- command rm -rf repo hg init repo cd repo hg debugbuilddag '+2 !"touch X" +2' -q -o echo -- dag hg debugdag -t -b echo -- glog hg glog --template '{rev}: {desc} [{branches}]\n' echo -- glog X hg glog --template '{rev}: {desc} [{branches}]\n' X cd ..