summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2015-09-18 15:55:18 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2015-09-18 15:55:18 +0000
commit0e71e2df9a753a5724f9d0f1d75670eb13e8aec8 (patch)
tree24195fa46a0fd5025ffc7c8596a9e796ae457efe
parentfafc63b7020d1dbd9508edfdd4067140f90b11f6 (diff)
downloadciat-tester-0e71e2df9a753a5724f9d0f1d75670eb13e8aec8.tar.gz
Remove extra debug.
-rwxr-xr-xopenstack/tester4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack/tester b/openstack/tester
index 88e3322..cf60385 100755
--- a/openstack/tester
+++ b/openstack/tester
@@ -86,7 +86,7 @@ class DeployedSystemInstance(object):
def runcmd(self, argv, chdir='.', **kwargs):
ssh_cmd = ['ssh', '-o', 'StrictHostKeyChecking=no',
'-o', 'UserKnownHostsFile=/dev/null', self.ssh_host]
- cmd = ['sh', '-x', '-c', 'cd "$1" && shift && exec "$@"', '-', chdir]
+ cmd = ['sh', '-c', 'cd "$1" && shift && exec "$@"', '-', chdir]
cmd += argv
ssh_cmd.append(' '.join(map(pipes.quote, cmd)))
print ssh_cmd
@@ -276,7 +276,7 @@ class ReleaseApp(cliapp.Application):
print('Running test: ' + data['name'])
for cmd in data['commands']:
print('$ ' + cmd)
- instance.runcmd(['sh', '-x', '-c', cmd], stdout=self.output)
+ instance.runcmd(['sh', '-c', cmd], stdout=self.output)
def deploy_and_test_systems(self, tests):
"""Run the deployments and tests"""