Index: zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py =================================================================== --- zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py +++ zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py @@ -373,7 +373,7 @@ WithProperties('%(deviceid)s'), 'shell'] hostname = 'localhost' - launchcmd = ['screen', '-d', '-m'] + shellcmd + launchcmd = ['screen', '-d', '-m'] + shellcmd + [WithProperties("TMPDIR=%(remote_dir)s/tmp")] terminatecmd = 'ps | grep lldb-server | awk \'{print $2}\' | xargs' terminatecmd = WithProperties('adb -s %(deviceid)s shell ' + terminatecmd + ' adb -s %(deviceid)s shell kill') cleandircmd = WithProperties('adb -s %(deviceid)s shell rm -rf %(remote_dir)s/*')