github.com/google/fleetspeak@v0.1.15-0.20240426164851-4f31f62c1aea/fleetspeak/src/client/daemonservice/execution/execution_oss_test.go (about)

     1  //go:build !google_internal
     2  
     3  package execution
     4  
     5  import (
     6  	"runtime"
     7  	"testing"
     8  )
     9  
    10  func testClient(t *testing.T) string {
    11  	if runtime.GOOS == "windows" {
    12  		return `..\testclient\testclient.exe`
    13  	}
    14  
    15  	return "../testclient/testclient"
    16  }