Mercurial > hg
diff tests/test-bad-pull @ 503:c6a2e41c8c60
Fix troubles with clone and exception handling
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Fix troubles with clone and exception handling
Clone deletes its directory on failure
This was deleting the lockfile out from under the lock object before
it got destroyed
This patch shuts lock up and makes the cleanup code for clone a little
cleaner.
manifest hash: f666fddcf6f3a905020a091f5e9fd2cb5d806cdd
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCwSGOywK+sNU5EO8RAkx2AKCIxPczl9YWnuUM+bMQnpVr8kv6uQCeNWld
SUxSB99PGJHhq1LWFaSJJNw=
=Frk/
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Tue, 28 Jun 2005 02:08:14 -0800 |
parents | e94cebc60d96 |
children | 3d4d5f2aba9a 4fc63e22b1fe |
line wrap: on
line diff
--- a/tests/test-bad-pull Tue Jun 28 02:04:49 2005 -0800 +++ b/tests/test-bad-pull Tue Jun 28 02:08:14 2005 -0800 @@ -1,11 +1,8 @@ -#!/bin/bash +#!/bin/bash -x hg clone http://localhost:20059/ copy -cd copy -hg verify -hg co -cat foo -hg manifest +echo $? +ls copy cat > dumb.py <<EOF import BaseHTTPServer, SimpleHTTPServer, signal @@ -23,10 +20,7 @@ python dumb.py 2>/dev/null & hg clone http://localhost:20059/foo copy2 -cd copy2 -hg verify -hg co -cat foo -hg manifest +echo $? +set +x kill $!