mirror of
https://github.com/sliverarmory/reflektor
synced 2026-08-25 09:14:48 +00:00
15 lines
298 B
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)
|
|
}
|