Files
netbird/client/cmd/vnc_agent_dropprivs_testhelpers_darwin.go
T

12 lines
246 B
Go

//go:build darwin && !ios
package cmd
import "os"
// currentUIDForTest exposes os.Getuid for the darwin dropprivs tests
// without leaking an os import into the test file itself.
func currentUIDForTest() uint32 {
return uint32(os.Getuid())
}