tests/test-rollback
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 07 Jul 2006 11:23:53 +0200
changeset 2576 6a961a54f953
parent 2227 4f072bb06e89
permissions -rwxr-xr-x
Changed default timeout for run-tests.py from 30 to 180 seconds. As e.g. test-http-proxy already takes quite some time (about a minute here) and tests usually should clean up after themselves, the timeout should only be hit in case of other problems.

#!/bin/sh

mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m "test" -d "1000000 0"
hg verify
hg parents
hg status
hg rollback
hg verify
hg parents
hg status