[PATCH] D45332: [LIT] Add new LLDB test format

Zachary Turner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 5 13:43:00 PDT 2018


zturner added a comment.

It should be possible to define it outside the LLVM repo.  Just in `llvm/lldb/lit/lit.cfg` replace this line:

  config.test_format = lit.formats.ShTest(execute_external)

with something like this:

  import lldb_format
  config.test_format = lldb_format.LLDBTestFormat()

and that file can live in the lldb repo.


Repository:
  rL LLVM

https://reviews.llvm.org/D45332





More information about the llvm-commits mailing list