Hi danalbert,

This removes a set of quotes that was causing lit.py to barf.

http://reviews.llvm.org/D5371

Files:
  buildbot/builders/LibcxxAndAbiBuilder.py
Index: buildbot/builders/LibcxxAndAbiBuilder.py
===================================================================
--- buildbot/builders/LibcxxAndAbiBuilder.py
+++ buildbot/builders/LibcxxAndAbiBuilder.py
@@ -86,7 +86,7 @@
 
     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
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to