mirror of https://github.com/v2ray/v2ray-core
fix build test for windows
parent
e8023f0d92
commit
1381fd32b4
|
@ -2,7 +2,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -19,10 +18,12 @@ func TestBuildAndRun(t *testing.T) {
|
||||||
v2testing.Current(t)
|
v2testing.Current(t)
|
||||||
|
|
||||||
gopath := os.Getenv("GOPATH")
|
gopath := os.Getenv("GOPATH")
|
||||||
target := filepath.Join(gopath, "src", "v2ray_test")
|
|
||||||
fmt.Println(target)
|
|
||||||
goOS := parseOS(runtime.GOOS)
|
goOS := parseOS(runtime.GOOS)
|
||||||
goArch := parseArch(runtime.GOARCH)
|
goArch := parseArch(runtime.GOARCH)
|
||||||
|
target := filepath.Join(gopath, "src", "v2ray_test")
|
||||||
|
if goOS == Windows {
|
||||||
|
target += ".exe"
|
||||||
|
}
|
||||||
err := buildV2Ray(target, "v1.0", goOS, goArch)
|
err := buildV2Ray(target, "v1.0", goOS, goArch)
|
||||||
assert.Error(err).IsNil()
|
assert.Error(err).IsNil()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue