Pass the --tempdir option from lcov to geninfo#379
Pass the --tempdir option from lcov to geninfo#379henry2cox merged 1 commit intolinux-test-project:masterfrom
Conversation
lcov invokes geninfo but didn't provide it with the user's --tempdir option value (if specified); pass it down. Signed-off-by: Paul Smith <[email protected]>
|
Well damn. Thanks for the fix! |
|
Yeah, sorry about that I keep getting pulled away this week so it took a few more days to get the PR in. In the abstract it would probably be cleaner to add a function to lcovutil which computes a list of the common lcovutil-supported options, that other tools could utilize to invoke each other while preserving command line args. But I didn't want to go that far :) |
|
That is pretty much what the implementation already does - except that the lcov/geninfo is different :-(. What I actually wanted to do (but haven't gotten to) is to move the common 'capture' functionality into a library - then simply invoke from either lcov or geninfo. More than happy, if someone wants to take that on. |
lcov invokes geninfo but didn't provide it with the user's --tempdir option value (if specified); pass it down.