summaryrefslogtreecommitdiff
path: root/testenv
diff options
context:
space:
mode:
authorDarshit Shah <darnir@gnu.org>2022-02-26 16:20:30 +0100
committerDarshit Shah <darnir@gnu.org>2022-02-26 16:20:30 +0100
commit2730a00c0d690dccd46ce4951505218a88fd3e10 (patch)
tree7163ae4233ad7125c4d422cd362a54eee5269d96 /testenv
parentbe936bda564963d7903a6966d3f40f92c95ca7f0 (diff)
downloadwget-2730a00c0d690dccd46ce4951505218a88fd3e10.tar.gz
Fix issues from syntax-check
* doc/wget.texi: s/time stamp/timestamp/ * src/ftp-ls.c(clean_line): Same (ftp_parse_vms_ls): Don't cast return value of x*alloc * src/ftp.c: Don't cast return value of alloca * src/css-url.c: wget.h should be the first include * testenv/Makefile.am: Use $(PATH_SEPARATOR) instead of : when declaring a path * testenv/Test-no_proxy-env.py: s/can not/cannot/
Diffstat (limited to 'testenv')
-rw-r--r--testenv/Makefile.am2
-rwxr-xr-xtestenv/Test-no_proxy-env.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/testenv/Makefile.am b/testenv/Makefile.am
index 08851b7a..7996af26 100644
--- a/testenv/Makefile.am
+++ b/testenv/Makefile.am
@@ -108,7 +108,7 @@ METALINK_TESTS = \
AUTOMAKE_OPTIONS = parallel-tests
AM_TESTS_ENVIRONMENT = export WGETRC=/dev/null; MAKE_CHECK=True; export MAKE_CHECK;\
- export PYTHONPATH=$$PYTHONPATH:$(srcdir); export VALGRIND_TESTS="@VALGRIND_TESTS@";
+ export PYTHONPATH=$$PYTHONPATH$(PATH_SEPARATOR)$(srcdir); export VALGRIND_TESTS="@VALGRIND_TESTS@";
if WITH_SSL
AM_TESTS_ENVIRONMENT += export SSL_TESTS=1;
diff --git a/testenv/Test-no_proxy-env.py b/testenv/Test-no_proxy-env.py
index beec72eb..105a85ab 100755
--- a/testenv/Test-no_proxy-env.py
+++ b/testenv/Test-no_proxy-env.py
@@ -20,7 +20,7 @@ from misc.wget_file import WgetFile
- "no_proxy=mit.edu"
- will match the domain and subdomains e.g. "www.mit.edu" or "www.subdomain.mit.edu" (Case #2)
- will match the host "mit.edu" (Case #1)
- - downside: can not match only the host
+ - downside: cannot match only the host
"""
# Check whether the system supports translating localhost subdomains