mirror of
https://github.com/bytedance/g3.git
synced 2026-05-19 16:28:21 +00:00
Some checks failed
CodeCoverage / lib unit test (push) Waiting to run
CodeCoverage / g3proxy test (push) Waiting to run
CodeCoverage / g3bench test (push) Waiting to run
CodeCoverage / g3statsd test (push) Waiting to run
CrossCompiling / Build (push) Waiting to run
Linux-CI / Build (push) Waiting to run
Linux-CI / Clippy (push) Waiting to run
Linux-CI / Build vendored (push) Waiting to run
Linux-CI / Build with OpenSSL Async Job (push) Waiting to run
MacOS-CI / Build (push) Waiting to run
MacOS-CI / Build vendored (push) Waiting to run
StaticLinking / musl (push) Waiting to run
StaticLinking / msvc (push) Waiting to run
Windows-CI / Build (push) Waiting to run
Windows-CI / Build vendored (push) Waiting to run
Sphinx-Doc / build (g3tiles) (push) Has been cancelled
Sphinx-Doc / build (g3keymess) (push) Has been cancelled
Sphinx-Doc / build (g3proxy) (push) Has been cancelled
Sphinx-Doc / build (g3statsd) (push) Has been cancelled
17 lines
345 B
Bash
17 lines
345 B
Bash
#!/bin/sh
|
|
|
|
|
|
for user in t1:toor t2:toor t3:toor
|
|
do
|
|
HTTP_PROXY="http://${user}@127.0.0.1:8080"
|
|
test_http_proxy_http_forward
|
|
# test_http_proxy_ftp_over_http
|
|
test_http_proxy_https_connect
|
|
test_http_proxy_https_forward
|
|
test_http_proxy_h2
|
|
|
|
|
|
SOCKS5_PROXY="socks5h://${user}@127.0.0.1:1080"
|
|
test_socks5_proxy_http
|
|
# test_socks5_proxy_dns
|
|
done
|