Mercurial > hg
annotate tests/test-bad-pull @ 401:af4848f83e68
From: Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
From: Radoslaw Szkodzinski <astralstorm@gorzow.mm.pl>
add hg tag command
Tweaks by mpm:
clean up error messages
handle non-existent .hgtags file
add tests
update test-help output
manifest hash: 569c7fe01193159919af2566e8f5089409ffad65
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCuMMwywK+sNU5EO8RAuUdAJ90TkT/D9lDOnEVAW2d3WT7K8Ct3QCggiJA
c9Qbd79K4UWKQAVkYq03cOY=
=SWS8
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Tue, 21 Jun 2005 17:47:28 -0800 |
parents | fbe8834923c5 |
children | c5705ab9cebd |
rev | line source |
---|---|
395 | 1 #!/bin/bash |
2 | |
3 mkdir copy | |
4 cd copy | |
5 hg init http://localhost:20059/ | |
6 hg verify | |
7 hg co | |
8 cat foo | |
9 hg manifest | |
10 | |
11 cat > dumb.py <<EOF | |
12 import BaseHTTPServer, SimpleHTTPServer, signal | |
13 | |
14 def run(server_class=BaseHTTPServer.HTTPServer, | |
15 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler): | |
16 server_address = ('localhost', 20059) | |
17 httpd = server_class(server_address, handler_class) | |
18 httpd.serve_forever() | |
19 | |
20 signal.signal(signal.SIGTERM, lambda x: sys.exit(0)) | |
21 run() | |
22 EOF | |
23 | |
24 python dumb.py 2>/dev/null & | |
25 | |
26 mkdir copy2 | |
27 cd copy2 | |
28 hg init http://localhost:20059/foo | |
29 hg verify | |
30 hg co | |
31 cat foo | |
32 hg manifest | |
33 | |
34 kill %1 |