Mercurial > evolve
comparison tests/dummyssh @ 1821:c0da3186e9a2 mercurial-3.4
merge with mercurial-3.5
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Tue, 28 Feb 2017 17:19:31 +0100 |
parents | 5b8d9c2ab480 |
children |
comparison
equal
deleted
inserted
replaced
1820:056c8052884d | 1821:c0da3186e9a2 |
---|---|
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)) |