Mercurial > hg
comparison tests/dummyssh @ 14186:8513bd2e7259
tests: share dummyssh
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Thu, 05 May 2011 01:47:46 +0200 |
parents | |
children | cdf9c43445df |
comparison
equal
deleted
inserted
replaced
14185:eb297845f90b | 14186:8513bd2e7259 |
---|---|
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 r = os.system(sys.argv[2]) | |
20 sys.exit(bool(r)) |