We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
go test -a
1 parent 4139165 commit b7b4107Copy full SHA for b7b4107
Makefile
@@ -81,4 +81,6 @@ format: earlyoom
81
clang-format -i *.h *.c
82
83
test: earlyoom
84
- cd tests ; go test -v
+ # Go does not notice when the C code changes, so we have to
85
+ # use `go test -a`. See https://github.com/golang/go/issues/24355 .
86
+ cd tests && go test -a -v
0 commit comments