[zorg] r344396 - LLDBBuilder.py: Speculative fix for the Linux lldb build
Vedant Kumar via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 12 11:30:38 PDT 2018
Author: vedantk
Date: Fri Oct 12 11:30:38 2018
New Revision: 344396
URL: http://llvm.org/viewvc/llvm-project?rev=344396&view=rev
Log:
LLDBBuilder.py: Speculative fix for the Linux lldb build
I think (but am not sure) that this will allow the Linux build to pick
up FileCheck for testing purposes.
Modified:
zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py?rev=344396&r1=344395&r2=344396&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py Fri Oct 12 11:30:38 2018
@@ -269,6 +269,7 @@ def getLLDBTestSteps(f,
compilerPath = compiler
for arch in test_archs:
DOTEST_OPTS=''.join(['--executable ' + bindir + '/lldb ',
+ '--filecheck ' + bindir + '/FileCheck ',
'-A %s ' % arch,
'-C %s ' % compilerPath,
'-s lldb-test-traces-%s-%s ' % (compiler, arch),
@@ -818,6 +819,7 @@ def getLLDBxcodebuildFactory(use_cc=None
workdir=lldb_srcdir))
DOTEST_OPTS = ' '.join(['--executable',
'%(lldb_bindir)s/lldb',
+ '%(lldb_bindir)s/FileCheck',
'--framework', '%(lldb_bindir)s/LLDB.framework',
'-A', 'x86_64',
'-C', 'clang',
More information about the llvm-commits
mailing list