mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
31 lines
649 B
Go
31 lines
649 B
Go
//go:build testrunmain
|
|
// +build testrunmain
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
// this abuses go so much that I felt dirty writing this code
|
|
// but it is the only way to do it without writing custom compiler that would
|
|
// be a clone of go-build with go-test
|
|
func TestRunMain(t *testing.T) {
|
|
args := flag.Args()
|
|
os.Args = append([]string{os.Args[0]}, args...)
|
|
ret := mainRet()
|
|
|
|
p := os.Getenv("IPFS_COVER_RET_FILE")
|
|
if len(p) != 0 {
|
|
os.WriteFile(p, []byte(fmt.Sprintf("%d\n", ret)), 0777)
|
|
}
|
|
|
|
// close outputs so go testing doesn't print anything
|
|
null, _ := os.Open(os.DevNull)
|
|
os.Stderr = null
|
|
os.Stdout = null
|
|
}
|