Compare commits

...

2 Commits

Author SHA1 Message Date
bel 3b53ef938d build.sh 2025-11-20 08:47:54 -07:00
bel 40d95d5b63 fix tests 2025-11-20 08:29:11 -07:00
2 changed files with 7 additions and 2 deletions

5
build.sh Normal file
View File

@ -0,0 +1,5 @@
#! /usr/bin/env bash
export CGO_ENABLED=1
export CC=x86_64-linux-musl-gcc
exec go build -ldflags="-linkmode external -extldflags '-static'" -o exec-rproxy3

View File

@ -34,7 +34,7 @@ func TestHTTPSMain(t *testing.T) {
"username",
"-pass",
"password",
"-proxy",
"-proxy2",
"hello," + addr,
"-crt",
"./testdata/rproxy3server.crt",
@ -89,7 +89,7 @@ func TestHTTPMain(t *testing.T) {
"username",
"-pass",
"password",
"-proxy",
"-proxy2",
"hello," + addr,
}
main()