types/lazy: re-init SyncValue during test cleanup if it wasn't set before SetForTest

Updates #12687

Signed-off-by: Nick Khyl <nickk@tailscale.com>
This commit is contained in:
Nick Khyl
2024-07-23 19:34:03 -05:00
committed by Nick Khyl
parent ba7f2d129e
commit 43375c6efb
2 changed files with 23 additions and 3 deletions

View File

@@ -170,8 +170,8 @@ type TB interface {
func (z *SyncValue[T]) SetForTest(tb TB, val T, err error) {
tb.Helper()
z.once.Do(func() {})
oldErr, oldVal := z.err.Load(), z.v
z.once.Do(func() {})
z.v = val
if err != nil {
@@ -181,7 +181,11 @@ func (z *SyncValue[T]) SetForTest(tb TB, val T, err error) {
}
tb.Cleanup(func() {
z.v = oldVal
z.err.Store(oldErr)
if oldErr == nil {
*z = SyncValue[T]{}
} else {
z.v = oldVal
z.err.Store(oldErr)
}
})
}