fix: run the test suite with -race
All checks were successful
check / check (push) Successful in 2m43s

make check/CI never exercised the race detector over this PR's
concurrency (evictor goroutine, write-pressure channel, the new
per-hash contentLock, concurrent store/evict). Minimal, scoped change:
add -race to the existing go test invocation. Full suite is clean
under it (make check passes; go test -race ./... completes in under
7s, well inside the 30s timeout).
This commit is contained in:
2026-08-09 00:48:49 +00:00
parent e7964fe777
commit bdae9cb86b

View File

@@ -17,7 +17,7 @@ run_with_cgo_deps() {
main() { main() {
cd "$ROOT" cd "$ROOT"
echo "Running tests..." echo "Running tests..."
run_with_cgo_deps "CGO_ENABLED=1 go test -timeout 30s -v ./..." run_with_cgo_deps "CGO_ENABLED=1 go test -timeout 30s -race -v ./..."
} }
main "$@" main "$@"