comparison tests/test-pull @ 336:aa6cbde09f72

Add some more tests -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Add some more tests manifest hash: 0e357a0d32baee877f2c7b6c6a8f7468e4b7f1b5 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCr4TQywK+sNU5EO8RAoZ1AJ9lbLIN2uwLWpVOilQs9CkyFIaQ5wCeKToO 1HXJVrlhexgIzwSnBkTBNOo= =UJ+y -----END PGP SIGNATURE-----
author mpm@selenic.com
date Tue, 14 Jun 2005 17:30:56 -0800
parents
children b2293093b89e b4e0e20646bb
comparison
equal deleted inserted replaced
335:74b9332faece 336:aa6cbde09f72
1 #!/bin/bash
2
3 set -e
4
5 mkdir test
6 cd test
7 echo foo>foo
8 hg init
9 hg addremove
10 hg commit -t "1"
11 hg verify
12 hg serve 2>/dev/null &
13 C=$!
14 cd ..
15
16 mkdir copy
17 cd copy
18 hg init http://localhost:8000/
19 hg verify
20 hg co
21 cat foo
22 hg manifest
23
24 kill $C