annotate tests/test-hgcia @ 8063:ee8d9b93b316
convert/p4: win32 fixes
* cmd.exe does not know single quotes
* win32 does not like trailing whitespace very much. Trade test coverage for
maintenance time and drop the trailing whitespaces tests.
author |
Patrick Mezard <pmezard@gmail.com> |
date |
Mon, 13 Apr 2009 16:15:45 +0200 |
parents |
b80b944836ec |
children |
|
rev |
line source |
7438
|
1 #!/bin/sh
|
|
2
|
|
3 cat >> $HGRCPATH <<EOF
|
|
4 [extensions]
|
|
5 hgcia=
|
|
6
|
|
7 [hooks]
|
|
8 changegroup.cia = python:hgext.hgcia.hook
|
|
9
|
|
10 [cia]
|
|
11 user = testuser
|
|
12 project = testproject
|
|
13 test = True
|
|
14 EOF
|
|
15
|
|
16 hg init src
|
|
17 hg init cia
|
|
18
|
|
19 cd src
|
|
20 echo foo > foo
|
|
21 hg ci -Amfoo
|
|
22
|
|
23 hg push ../cia
|