summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/chdir-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'rdiff-backup/testing/chdir-wrapper')
-rwxr-xr-xrdiff-backup/testing/chdir-wrapper15
1 files changed, 15 insertions, 0 deletions
diff --git a/rdiff-backup/testing/chdir-wrapper b/rdiff-backup/testing/chdir-wrapper
new file mode 100755
index 0000000..413fcf2
--- /dev/null
+++ b/rdiff-backup/testing/chdir-wrapper
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+
+"""Used to emulate a remote connection by changing directories.
+
+If given an argument, will change to that directory, and then start
+the server. Otherwise will start the server without a chdir.
+
+"""
+
+execfile("commontest.py")
+rbexec("setconnections.py")
+
+if len(sys.argv) > 1: os.chdir(sys.argv[1])
+PipeConnection(sys.stdin, sys.stdout).Server()
+