Mercurial > hg
view tests/test-permissions @ 1799:b942f5cfd326
Replaced fixed window size for walkchangerevs with an increasing one. Window
sizes starts at 8 (for good interactiveness) and doubles with each window
until it is 512, which seems to be the maximum efficient value.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 23 Feb 2006 22:37:29 +0100 |
parents | f0b13c019b04 |
children | 7544700fd931 |
line wrap: on
line source
#!/bin/sh hg init echo foo > a hg add a hg commit -m "1" -d "0 0" hg verify chmod -r .hg/data/a.d hg verify 2>/dev/null || echo verify failed chmod +r .hg/data/a.d hg verify 2>/dev/null || echo verify failed chmod -w .hg/data/a.d echo barber > a hg commit -m "2" -d "0 0" 2>/dev/null || echo commit failed