1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-13 23:48:45 -04:00
v2fly/testing/scenarios/server_env_regular.go

30 lines
558 B
Go
Raw Normal View History

2016-08-08 18:55:36 -04:00
// +build !coverage
package scenarios
import (
2016-11-17 18:01:37 -05:00
"fmt"
2016-08-08 18:55:36 -04:00
"os"
"os/exec"
)
func BuildV2Ray() error {
2016-11-17 18:01:37 -05:00
GenTestBinaryPath()
if _, err := os.Stat(testBinaryPath); err == nil {
2016-08-08 18:55:36 -04:00
return nil
}
2016-11-21 18:19:51 -05:00
fmt.Printf("Building V2Ray into path (%s)\n", testBinaryPath)
2016-11-17 18:01:37 -05:00
cmd := exec.Command("go", "build", "-tags=json", "-o="+testBinaryPath, GetSourcePath())
2016-08-08 18:55:36 -04:00
return cmd.Run()
}
func RunV2Ray(configFile string) *exec.Cmd {
2016-11-17 18:01:37 -05:00
GenTestBinaryPath()
proc := exec.Command(testBinaryPath, "-config", configFile)
2016-08-08 18:55:36 -04:00
proc.Stderr = os.Stderr
proc.Stdout = os.Stdout
return proc
}