-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(integration tests) support for generating coverage files when execut…
…ing lab as a binary
- Loading branch information
1 parent
dbf9447
commit 8ec6b6d
Showing
4 changed files
with
20 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package main | ||
|
||
// This file is mandatory as otherwise the lab.test binary is not generated correctly. | ||
import ( | ||
"flag" | ||
"math/rand" | ||
"strconv" | ||
"testing" | ||
"time" | ||
) | ||
|
||
// Test started when the test binary is started. Only calls main. | ||
func TestLab(t *testing.T) { | ||
rand.Seed(time.Now().UnixNano()) | ||
flag.Set("test.coverprofile", "../coverage-"+strconv.Itoa(int(rand.Uint64()))+".out") | ||
main() | ||
} |