sapling/tests/dummyssh
Durham Goode 22bfad4b6f Add tests
Adds test to test synchronizing between master repos and to test the
prevention of non-push/pull transactions (such as commit and strip).

Adds tests/getdb.sh to the ignored list. This is a script that provides the
database host, port, and name for the test. It must be in the form
"ip:port:databasename". The test assumes that the database name is unique and
doesn't already exist each time getdb.sh is called.
2014-01-28 20:49:56 -08:00

25 lines
516 B
Python
Executable File

#!/usr/bin/env python
import sys
import os
os.chdir(os.getenv('TESTTMP'))
if sys.argv[1] != "user@dummy":
sys.exit(-1)
os.environ["SSH_CLIENT"] = "127.0.0.1 1 2"
log = open("dummylog", "ab")
log.write("Got arguments")
for i, arg in enumerate(sys.argv[1:]):
log.write(" %d:%s" % (i + 1, arg))
log.write("\n")
log.close()
hgcmd = sys.argv[2]
if os.name == 'nt':
# hack to make simple unix single quote quoting work on windows
hgcmd = hgcmd.replace("'", '"')
r = os.system(hgcmd)
sys.exit(bool(r))