mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
30 lines
558 B
Go
30 lines
558 B
Go
// +build !coverage
|
|
|
|
package scenarios
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
func BuildV2Ray() error {
|
|
GenTestBinaryPath()
|
|
if _, err := os.Stat(testBinaryPath); err == nil {
|
|
return nil
|
|
}
|
|
|
|
fmt.Printf("Building V2Ray into path (%s)\n", testBinaryPath)
|
|
cmd := exec.Command("go", "build", "-tags=json", "-o="+testBinaryPath, GetSourcePath())
|
|
return cmd.Run()
|
|
}
|
|
|
|
func RunV2Ray(configFile string) *exec.Cmd {
|
|
GenTestBinaryPath()
|
|
proc := exec.Command(testBinaryPath, "-config", configFile)
|
|
proc.Stderr = os.Stderr
|
|
proc.Stdout = os.Stdout
|
|
|
|
return proc
|
|
}
|