summaryrefslogtreecommitdiff
path: root/tests/setup_proxy_test
AgeCommit message (Collapse)Author
2022-06-28tests: do not run atf_check in a subshellNatanael Copa
We can not pipe to atf_shell as it will make it run in a subshell and will not handle failures properly. Fixes commit ab67ab0733c2 (setup-proxy: fix empty proxy)
2022-06-28setup-proxy: fix empty proxypsykose
the while loop loops until the value of proxyurl is none or a http*:// scheme. however, when proxyurl is set to 'none', it then gets unset here (`proxyurl= ;`), but the following `if` block checks if it is 'none' and fails, so we configure an empty http_proxy= in the proxy.sh profile script. this is then read by some software, and it causes it to crash. for instance, flatpak via glib reads `http_proxy` from the environment, and an empty variable is illegal.
2022-05-12tests: setup-proxy: whitespaceNatanael Copa
2022-05-12tests: add tests for setup-proxyNatanael Copa