2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/main_test.go
2021-02-22 14:30:09 +11:00

20 lines
230 B
Go

package torrent
import (
"log"
"os"
"testing"
_ "github.com/anacrolix/envpprof"
)
func init() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
}
func TestMain(m *testing.M) {
code := m.Run()
// select {}
os.Exit(code)
}