summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfergus.henderson <fergus.henderson@01de4be4-8c4a-0410-9132-4925637da917>2011-04-06 14:49:11 +0000
committerfergus.henderson <fergus.henderson@01de4be4-8c4a-0410-9132-4925637da917>2011-04-06 14:49:11 +0000
commita43fb7b6395b75113a800902fe18ae9c73e77e8f (patch)
tree756127d69dae573cfcd8dc6d25d8b532814cee5d
parent70a9a69aedc0afb0ff5542b221b3c0ea4cee6b59 (diff)
downloaddistcc-a43fb7b6395b75113a800902fe18ae9c73e77e8f.tar.gz
Fix a syntax error in my last change.
git-svn-id: http://distcc.googlecode.com/svn/trunk@741 01de4be4-8c4a-0410-9132-4925637da917
-rwxr-xr-xtest/testdistcc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testdistcc.py b/test/testdistcc.py
index 86f2a6c..0a5f0cd 100755
--- a/test/testdistcc.py
+++ b/test/testdistcc.py
@@ -1246,8 +1246,8 @@ class Gdb_Case(CompileHello_Case):
value set by the compilation.
"""
os.mkdir('link')
- cmd = self.distcc() + self.compiler() + self.build_id +
- " -o link/testtmp obj/testtmp.o"
+ cmd = (self.distcc() + self.compiler() + self.build_id +
+ " -o link/testtmp obj/testtmp.o")
out, err = self.runcmd(cmd)
if out != '':
self.fail("command %s produced output:\n%s" % (`cmd`, `out`))