2
0
mirror of https://git.numenor-labs.us/dsfx.git synced 2025-05-28 09:27:54 +00:00
2025-03-09 16:14:19 -04:00

19 lines
247 B
Go

package main
import (
"fmt"
"os"
"os/exec"
)
func main() {
cmd := exec.Command("go", "test", "-bench=Handshake", "./pkg/handshake/...")
output, err := cmd.Output()
if err != nil {
panic(err)
}
fmt.Fprint(os.Stdout, string(output))
}