tests/test-requires
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Wed, 17 Feb 2010 11:00:48 +0100
branchstable
changeset 10491 d7e582cab6b6
parent 3851 8f18e31c4441
permissions -rwxr-xr-x
http: len(x) fails if it doesn't fit into an int, use __len__() instead len(x) raises OverflowError if it's bigger than 2**31-1, we need to call __len__() ourself instead.

#!/bin/sh

mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m test -d "1000000 0"
rm .hg/requires
hg tip
echo indoor-pool > .hg/requires
hg tip

true