From a43fb7b6395b75113a800902fe18ae9c73e77e8f Mon Sep 17 00:00:00 2001 From: "fergus.henderson" Date: Wed, 6 Apr 2011 14:49:11 +0000 Subject: Fix a syntax error in my last change. git-svn-id: http://distcc.googlecode.com/svn/trunk@741 01de4be4-8c4a-0410-9132-4925637da917 --- test/testdistcc.py | 4 ++-- 1 file 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`)) -- cgit v1.2.1