Mercurial > evolve
comparison tests/dummyssh @ 943:5b8d9c2ab480
evolve: test exchange through wireprotocol
The wireprotocol version of the exchange was only tested in the
`simple4server.py` case.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Tue, 20 May 2014 23:57:48 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
942:010c7e4aa820 | 943:5b8d9c2ab480 |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 import sys | |
4 import os | |
5 | |
6 os.chdir(os.getenv('TESTTMP')) | |
7 | |
8 if sys.argv[1] != "user@dummy": | |
9 sys.exit(-1) | |
10 | |
11 os.environ["SSH_CLIENT"] = "127.0.0.1 1 2" | |
12 | |
13 log = open("dummylog", "ab") | |
14 log.write("Got arguments") | |
15 for i, arg in enumerate(sys.argv[1:]): | |
16 log.write(" %d:%s" % (i + 1, arg)) | |
17 log.write("\n") | |
18 log.close() | |
19 hgcmd = sys.argv[2] | |
20 if os.name == 'nt': | |
21 # hack to make simple unix single quote quoting work on windows | |
22 hgcmd = hgcmd.replace("'", '"') | |
23 r = os.system(hgcmd) | |
24 sys.exit(bool(r)) |