sapling/tests/test-pull-permission
Thomas Arendsen Hein 1b244c77c7 Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero.
Some systems show "Thu Jan 01" instead of "Thu Jan  1", which breaks tests.
Using "1000000" yields "Mon Jan 12 13:46:40 1970", which looks the same on
all systems.
2006-03-13 13:05:41 +01:00

20 lines
169 B
Bash
Executable File

#!/bin/sh
mkdir a
cd a
hg init
echo foo > b
hg add b
hg ci -m "b" -d "1000000 0"
chmod -w .hg
cd ..
hg clone a b
chmod +w a/.hg # let test clean up
cd b
hg verify