-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to filter coverage during combine operations
Description: - Fix #48 - Filter options now apply during combine operations
- Loading branch information
1 parent
85d2394
commit 8bf5f73
Showing
3 changed files
with
80 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
test/functional/expected_results/basic.fastcov.expected.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"sources": { | ||
"/mnt/workspace/test/functional/cmake_project/src/source2.cpp": { | ||
"": { | ||
"functions": { | ||
"_Z3barbii": { | ||
"start_line": 3, | ||
"execution_count": 10 | ||
} | ||
}, | ||
"branches": {}, | ||
"lines": { | ||
"3": 10, | ||
"5": 10, | ||
"6": 10, | ||
"8": 0 | ||
} | ||
} | ||
}, | ||
"/mnt/workspace/test/functional/cmake_project/src/source1.cpp": { | ||
"": { | ||
"functions": { | ||
"_Z3foob": { | ||
"start_line": 3, | ||
"execution_count": 1 | ||
} | ||
}, | ||
"branches": {}, | ||
"lines": { | ||
"3": 1, | ||
"5": 1, | ||
"7": 1001, | ||
"8": 1000, | ||
"10": 1000, | ||
"11": 0, | ||
"14": 1 | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters