This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 422
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1352 from MartinNowak/fixTest
output coverage reports to $(ROOT) to avoid test interference
- Loading branch information
Showing
7 changed files
with
27 additions
and
15 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
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 |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| |int main() | ||
| |import core.runtime; | ||
| | | ||
| |void main(string[] args) | ||
| |{ | ||
| 1| return 0; | ||
| 1| dmd_coverDestPath(args[1]); | ||
| |} | ||
| src/basic.d is 100% covered |
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 |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| |int main() | ||
| |import core.runtime; | ||
| | | ||
| |int main(string[] args) | ||
| |{ | ||
| 1| dmd_coverDestPath(args[1]); | ||
| 1| return 0; | ||
| |} | ||
| src/merge.d is 100% covered |
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 |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| |import core.runtime; | ||
| | | ||
| |void main() | ||
| |void main(string[] args) | ||
| |{ | ||
| 2| dmd_coverDestPath(args[1]); | ||
| 2| dmd_coverSetMerge(true); | ||
| |} | ||
| src/merge_true.d is 100% covered |
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 |
|---|---|---|
| @@ -1,4 +1,6 @@ | ||
| int main() | ||
| import core.runtime; | ||
|
|
||
| void main(string[] args) | ||
| { | ||
| return 0; | ||
| dmd_coverDestPath(args[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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,7 @@ | ||
| int main() | ||
| import core.runtime; | ||
|
|
||
| int main(string[] args) | ||
| { | ||
| dmd_coverDestPath(args[1]); | ||
| return 0; | ||
| } |
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 |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| import core.runtime; | ||
|
|
||
| void main() | ||
| void main(string[] args) | ||
| { | ||
| dmd_coverDestPath(args[1]); | ||
| dmd_coverSetMerge(true); | ||
| } |