From 0e71e2df9a753a5724f9d0f1d75670eb13e8aec8 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Fri, 18 Sep 2015 15:55:18 +0000 Subject: Remove extra debug. --- openstack/tester | 4 ++-- 1 file 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""" -- cgit v1.2.1