Home | History | Annotate | Download | only in command_script
      1 def bug11569(debugger, args, result, dict):
      2     """
      3     http://llvm.org/bugs/show_bug.cgi?id=11569
      4     LLDBSwigPythonCallCommand crashes when a command script returns an object.
      5     """
      6     return ["return", "a", "non-string", "should", "not", "crash", "LLDB"];
      7 
      8