Mercurial > hg
view tests/test-permissions @ 1497:f0b13c019b04
Add permissions handling test
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 03 Nov 2005 00:45:54 -0800 |
parents | |
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