We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b77f6 commit 772e624Copy full SHA for 772e624
1 file changed
CCDB/test/testCcdbApi.cxx
@@ -63,6 +63,8 @@ struct Fixture {
63
char hostname[_POSIX_HOST_NAME_MAX];
64
gethostname(hostname, _POSIX_HOST_NAME_MAX);
65
basePath = string("Test/TestCcdbApi/") + hostname + "/pid" + getpid() + "/";
66
+ // Replace dashes by underscores to avoid problems in the creation of local directories
67
+ std::replace(basePath.begin(), basePath.end(), '-','_');
68
cout << "Path we will use in this test suite : " + basePath << endl;
69
}
70
~Fixture()
0 commit comments