aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/apps/tests/persistenceconformance_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/apps/tests/persistenceconformance_test.cpp')
-rw-r--r--searchcore/src/apps/tests/persistenceconformance_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/apps/tests/persistenceconformance_test.cpp b/searchcore/src/apps/tests/persistenceconformance_test.cpp
index 64db35b7acb..b489a07bba2 100644
--- a/searchcore/src/apps/tests/persistenceconformance_test.cpp
+++ b/searchcore/src/apps/tests/persistenceconformance_test.cpp
@@ -38,8 +38,8 @@
#include <vespa/searchlib/index/dummyfileheadercontext.h>
#include <vespa/searchlib/transactionlog/translogserver.h>
#include <vespa/searchsummary/config/config-juniperrc.h>
-#include <vespa/vespalib/io/fileutil.h>
#include <vespa/vespalib/util/size_literals.h>
+#include <filesystem>
#include <vespa/log/log.h>
LOG_SETUP("persistenceconformance_test");
@@ -190,8 +190,8 @@ public:
const DocTypeName &docType,
const ConfigFactory &factory) {
DocumentDBConfig::SP snapshot = factory.create(docType);
- vespalib::mkdir(_baseDir, false);
- vespalib::mkdir(_baseDir + "/" + docType.toString(), false);
+ std::filesystem::create_directory(std::filesystem::path(_baseDir));
+ std::filesystem::create_directory(std::filesystem::path(_baseDir + "/" + docType.toString()));
vespalib::string inputCfg = _baseDir + "/" + docType.toString() + "/baseconfig";
{
FileConfigManager fileCfg(_shared_service.transport(), inputCfg, "", docType.getName());