Add tests with backend SSL

A 'BACKEND_SSL' label added. If test has this label
Testconnection() configures backend servers to
require SSL
This commit is contained in:
Timofey Turenko
2019-09-13 14:12:49 +03:00
parent 8b43adada7
commit bdfd7341e7
5 changed files with 57 additions and 9 deletions

View File

@ -299,6 +299,12 @@ TestConnections::TestConnections(int argc, char* argv[])
mdbci_labels = get_mdbci_lables(labels);
if (check_label(std::string(labels), "BACKEND_SSL"))
{
backend_ssl = true;
tprintf("Test has BACKEND_SSL label");
}
std::string delimiter = std::string (",");
size_t pos_start = 0, pos_end, delim_len = delimiter.length();
std::string label;