This website requires JavaScript.
Explore
Help
Sign In
root
/
buildah
mirror of
https://github.com/containers/buildah.git
Watch
1
Star
0
Fork
You've already forked buildah
0
Code
Issues
Actions
2
Packages
Projects
Releases
Wiki
Activity
fdf1c75cd3
buildah
/
pkg
/
dummy
/
dummy_test.go
9 lines
71 B
Go
Raw
Normal View
History
Unescape
Escape
Makefile: check for `-race` using `-mod=vendor` When checking if `go test` supports `-race` on the current platform, use `-mod=vendor` if it's available, so that the compiler won't try to pull down our dependencies, and run it against a package that has fewer dependencies. Run `go tool dist list` once, and filter its results to derive the cross-compile target lists, rather than running it three times. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
2021-09-24 01:32:55 +08:00
package
dummy
import
(
"testing"
)
linters: unused arguments shouldn't have names Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
2024-08-07 03:07:02 +08:00
func
TestDummy
(
_
*
testing
.
T
)
{
Makefile: check for `-race` using `-mod=vendor` When checking if `go test` supports `-race` on the current platform, use `-mod=vendor` if it's available, so that the compiler won't try to pull down our dependencies, and run it against a package that has fewer dependencies. Run `go tool dist list` once, and filter its results to derive the cross-compile target lists, rather than running it three times. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
2021-09-24 01:32:55 +08:00
}