From: W. Trevor King Date: Mon, 14 Dec 2009 00:58:50 +0000 (-0500) Subject: Don't require new revisions on empty commits. X-Git-Tag: 1.0.0~59^2~52^2~71 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fa491e55c00363009985dadca264bc23fd0fc76d;p=be.git Don't require new revisions on empty commits. For example, hg can't: $ mkdir x; cd x; x$ hg init; x$ echo a> b; hg add b; x$ hg commit -m 'r1'; x$ hg commit -m 'r2'; nothing changed x$ hg log; changeset: 0:e30558c36fca tag: tip user: W. Trevor King date: Sun Dec 13 19:48:47 2009 -0500 summary: hi x$ cd ..; rm -rf x We shouldn't need this functionality anyway ;). --- diff --git a/libbe/storage/base.py b/libbe/storage/base.py index 56b59ba..dd35586 100644 --- a/libbe/storage/base.py +++ b/libbe/storage/base.py @@ -758,11 +758,14 @@ if TESTING == True: """ Commit / revision_id should agree on revision ids. """ + def val(i): + return '%s:%d' % (self.val, i+1) + self.s.add(self.id, directory=False) revs = [] - for s in range(10): - revs.append(self.s.commit(self.commit_msg, - self.commit_body, - allow_empty=True)) + for i in range(10): + self.s.set(self.id, val(i)) + revs.append(self.s.commit('%s: %d' % (self.commit_msg, i), + self.commit_body)) for i in range(10): rev = self.s.revision_id(i+1) self.failUnless(rev == revs[i],