Am 16.11.2018 um 16:53 hat Daniel P. Berrangé geschrieben: > Add tests that validate it is possible to connect to an NBD server > running TLS mode. Also test mis-matched TLS vs non-TLS connections > correctly fail.
> +echo > +echo "== preparing TLS creds ==" > + > +tls_x509_create_root_ca "ca1" > +tls_x509_create_root_ca "ca2" > +tls_x509_create_server "ca1" "server1" > +tls_x509_create_client "ca1" "client1" > +tls_x509_create_client "ca2" "client2" Looks like we can't blindly assume that certtool exists. This test case fails for me, starting with the following diff: @@ -1,30 +1,21 @@ QA output created by 233 == preparing TLS creds == -Generating a self signed certificate... -Generating a self signed certificate... -Generating a signed certificate... -Generating a signed certificate... -Generating a signed certificate... +./common.tls: line 71: certtool: command not found +./common.tls: line 71: certtool: command not found +./common.tls: line 98: certtool: command not found +./common.tls: line 127: certtool: command not found +./common.tls: line 127: certtool: command not found Of course, after that everything else fails as well. Kevin