mirror of https://github.com/v2ray/v2ray-core
				
				
				
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			604 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			604 B
		
	
	
	
		
			Go
		
	
	
| // +build !coverage
 | |
| 
 | |
| package scenarios
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"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", "-o="+testBinaryPath, GetSourcePath())
 | |
| 	return cmd.Run()
 | |
| }
 | |
| 
 | |
| func RunV2RayProtobuf(config []byte) *exec.Cmd {
 | |
| 	genTestBinaryPath()
 | |
| 	proc := exec.Command(testBinaryPath, "-config=stdin:", "-format=pb")
 | |
| 	proc.Stdin = bytes.NewBuffer(config)
 | |
| 	proc.Stderr = os.Stderr
 | |
| 	proc.Stdout = os.Stdout
 | |
| 
 | |
| 	return proc
 | |
| }
 |