summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-cov/threads.c
Commit message (Collapse)AuthorAgeFilesLines
* [llvm-cov] Add an option which maps the location of source directories on ↵Sean Eveson2017-08-141-3/+3
| | | | | | | | | | | | | | | | | | | another machine to your local copies Summary: This patch adds the -path-equivalence option (example: llvm-cov show -path-equivalence=/origin/path,/local/path) which maps the source code path from one machine to another when using `llvm-cov show`. This is similar to the -filename-equivalence option, but doesn't require you to specify all the source files on the command line. This allows you to generate the coverage data on one machine (e.g. in a CI system), and then use llvm-cov on another machine where you have the same code base on a different path. Reviewers: vsk Reviewed By: vsk Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D36391 llvm-svn: 310827
* [llvm-cov] Add a cl::opt to control the number of threadsVedant Kumar2017-07-111-0/+11
When an output directory is specified, llvm-cov spawns some threads to speed up the process of writing out file reports. Add an option which allows users to control how many threads llvm-cov uses. A CommandGuide.rst update + test is included. llvm-svn: 307609
OpenPOWER on IntegriCloud