1 //go:build linux 2 3 package memexec 4 5 import ( 6 "os/exec" 7 "testing" 8 ) 9 10 func TestGenLinux(t *testing.T) { 11 e := exec.Command("go", "run", "../cmd/memexec-gen", "/usr/bin/python3") 12 e.Dir = "testdata" 13 _ = runCommand(t, e) 14 15 e = exec.Command("go", "run", ".", "-c", "print(42)") 16 e.Dir = "testdata" 17 if have := runCommand(t, e); have != "42" { 18 t.Fatalf("output mismatch:\n\thave: %s\n\twant: %s", have, "42") 19 } 20 } 21