dvyukov / go-fuzz

Randomized testing for Go
Apache License 2.0
4.79k stars 279 forks source link

how could i stop the process except for ctrl + c #342

Closed pengliangyou closed 2 years ago

pengliangyou commented 2 years ago

how could i stop the process except for ctrl + c

dvyukov commented 2 years ago

There is no other way than killing with some signal IIRC. You can kill it, or run under timeout utility.

pengliangyou commented 2 years ago

Thanks very much