Fix python test suite for GnuTLS 3.5.12+

* testenv/Test-*.py: Replace 127.0.0.1 by localhost
* testenv/certs/server-template.cfg: Likewise
* testenv/certs/server-cert.pem: Regenerate
* testenv/certs/server-crl.pem: Likewise
* testenv/test/base_test.py: Hardcode 'localhost' as server domain

Reported-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Tim Rühsen
2017-07-09 11:35:47 +02:00
parent 21154bdc36
commit f42229b1fd
9 changed files with 46 additions and 47 deletions

View File

@ -30,7 +30,7 @@ File2_rules = {
}
}
Netrc = "machine 127.0.0.1\n\tlogin {0}\n\tpassword {1}".format(User, Password)
Netrc = "machine localhost\n\tlogin {0}\n\tpassword {1}".format(User, Password)
A_File = WgetFile ("File1", File1, rules=File1_rules)
B_File = WgetFile ("File2", File2, rules=File2_rules)