Browse Source

skip tests if an upstream HTTP proxy is set

shadowsocks-libev doesn't support connecting through an upstream HTTP
proxy, so if the test environment requires that then there's nothing we can
do.  (In future it might be possible to set up a local server to avoid this
problem.)
pull/2087/head
Colin Watson 6 years ago
committed by Roger Shimizu
parent
commit
4a4531d866
1 changed files with 5 additions and 0 deletions
  1. 5
      tests/test.sh

5
tests/test.sh

@ -27,6 +27,11 @@ function run_test {
[ -d src -a -x src/ss-local ] &&
BIN="--bin src/"
if [ "$http_proxy" ]; then
echo "SKIP: shadowsocks-libev does not support an upstream HTTP proxy"
exit 0
fi
run_test python tests/test.py $BIN -c tests/aes.json
run_test python tests/test.py $BIN -c tests/aes-gcm.json
run_test python tests/test.py $BIN -c tests/aes-ctr.json

Loading…
Cancel
Save