[zorg] r217896 - Fix the LibcxxAndAbiBuilder's passing of LIT arguments
Jonathan Roelofs
jonathan at codesourcery.com
Tue Sep 16 13:05:54 PDT 2014
Author: jroelofs
Date: Tue Sep 16 15:05:54 2014
New Revision: 217896
URL: http://llvm.org/viewvc/llvm-project?rev=217896&view=rev
Log:
Fix the LibcxxAndAbiBuilder's passing of LIT arguments
This removes a set of quotes that was causing lit.py to barf.
http://reviews.llvm.org/D5371
Modified:
zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py?rev=217896&r1=217895&r2=217896&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py Tue Sep 16 15:05:54 2014
@@ -86,7 +86,7 @@ def getLibcxxAndAbiBuilder(f=None, env={
f.addStep(buildbot.steps.shell.ShellCommand(
name='cmake', command=['cmake', src_root,
- '-DLLVM_LIT_ARGS="'+litTestArgs+'"'],
+ '-DLLVM_LIT_ARGS='+litTestArgs],
haltOnFailure=True, workdir=build_path, env=env))
# Build libcxxabi
More information about the llvm-commits
mailing list