tests/test-race
author James Abbatiello <abbeyj at gmail.com>
Tue, 14 Jul 2009 22:42:05 -0400
changeset 9129 395b0e132836
parent 6327 6d952dc2abc9
permissions -rwxr-xr-x
Don't copy hidden files/directories during `setup.py install` This is useful if a copy of Mercurial is stored in a Subversion repository so that the .svn directories don't get copied.

#!/bin/sh

mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m test

# do we ever miss a sub-second change?
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do
    hg co -qC 0
    echo b > a
    hg st
done