Files
sliverarmory-reflektor/integration/sharedlib_load_linux_go_test.go

15 lines
298 B
Go

//go:build linux && (386 || amd64 || arm64)
package reflektor_test
import (
"runtime"
"testing"
)
func TestLoadGeneratedGoLinuxSOAndCallStartW(t *testing.T) {
outDir := t.TempDir()
soPath := buildOneGoSharedLib(t, outDir, "linux", runtime.GOARCH)
runGoRuntimeFixtureSubprocess(t, soPath)
}