add / to MDBCI_VM_PATH

If case of MDBCI_VM_PATH variable does not have trailing slash full names of _network_config
and _lables files are defined in the wrong way: MDBCI_VM_PATH is interpreted as a part of file name
instead of direcoty name
This commit is contained in:
Timofey Turenko 2019-04-15 13:45:18 +03:00
parent 7ecc70fd5d
commit a920534e94

View File

@ -557,7 +557,7 @@ void TestConnections::read_mdbci_info()
target = readenv("target", "develop");
mdbci_config_name = readenv("mdbci_config_name", "local");
vm_path = std::string(mdbci_vm_path) + std::string(mdbci_config_name);
vm_path = std::string(mdbci_vm_path) + std::string("/") + std::string(mdbci_config_name);
if (mdbci_config_name != NULL)
{
std::ifstream nc_file;