Displaying 2 results from an estimated 2 matches for "outputcheck".
2019 Jan 24
3
Is ist a good idea to use lit and other test tools for non llvm projects?
...ut I've long wished LLVM's
> testing tools were available outside of LLVM, packaged up separately so
> they could be more widely used. They're great tools!
lit is, in fact, packaged separately--it is available on PyPI.
FileCheck isn't; there is a similar tool on PyPI, called OutputCheck,
which I have used extensively for similar jobs (matching compiler IR)
but
I like it much less than FileCheck.
--
whitequark
2019 Jan 24
4
Is ist a good idea to use lit and other test tools for non llvm projects?
Hi,
I have a project which uses llvm, but is (at least not yet) a
contribution / not in the source tree of llvm.
Is it a good idea (e.g. instead of using boost test framework) to use
the llvm testsuite related tools in this case?
Alex