You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(stress): drop false-positive goroutine-count check
runtime.NumGoroutine() counts ALL goroutines including the hundreds of
testing.(*T).Parallel goroutines from other tests in the suite. These
goroutines accumulate during the 30 s rep and have nothing to do with
the stress workload, producing false-positive leak reports in CI
(delta=247 where tolerance=10).
The §4.8 "no goroutine deadlock" guarantee is already enforced by
runRep's wg.Wait() with a 20 s hard ceiling — if any of the 1000 worker
goroutines deadlock, the test fails there. Remove the redundant absolute
goroutine count check that cannot be made meaningful in a parallel suite.
0 commit comments