Assuming you would fix the small issue with the line 59.

================
Comment at: zorg/buildbot/builders/LLDBBuilder.py:59
@@ -58,2 +58,3 @@
 
-    f = getLLDBSource(f,'llvm')
+    mode = step.build.getProperty("mode") or 'update'
+    f = getLLDBSource(f,mode,'llvm')
----------------
The check will always be true and you would never get  'update', since Property 
is an object renderable on a slave.
What you really want here is to use the 'default' parameter. Like this:

mode = step.build.getProperty("mode", default='update')

http://reviews.llvm.org/D8062

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/



_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to