1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00

test: Improve layout of helper binaries

This patch moves the test helper binaries to a "one directory per
helper" layout, and also makes them to be ignored in the coverage build
instead of all builds.

With this change, "go build ./..." will build all binaries including the
test helpers, which helps make sure that module manage automation also
considers them. In particular, this makes "go mod tidy" work fine.
This commit is contained in:
Alberto Bertogli
2022-08-27 18:33:33 +01:00
parent 567ad35122
commit 21e8d50df6
11 changed files with 37 additions and 27 deletions

View File

@@ -101,26 +101,29 @@ function chamuyero() {
}
function generate_cert() {
go run ${UTILDIR}/generate_cert.go "$@"
( cd ${UTILDIR}/generate_cert/; go build )
${UTILDIR}/generate_cert/generate_cert "$@"
}
function loadgen() {
go run ${UTILDIR}/loadgen.go "$@"
( cd ${UTILDIR}/loadgen/; go build )
${UTILDIR}/loadgen/loadgen "$@"
}
function conngen() {
go run ${UTILDIR}/conngen.go "$@"
( cd ${UTILDIR}/conngen/; go build )
${UTILDIR}/conngen/conngen "$@"
}
function minidns_bg() {
( cd ${UTILDIR}; go build minidns.go )
${UTILDIR}/minidns "$@" &
( cd ${UTILDIR}/minidns; go build )
${UTILDIR}/minidns/minidns "$@" &
MINIDNS=$!
}
function fexp() {
( cd ${UTILDIR}; go build fexp.go )
${UTILDIR}/fexp "$@"
( cd ${UTILDIR}/fexp/; go build )
${UTILDIR}/fexp/fexp "$@"
}
function timeout() {