From f86bbaa2cea93e31d6987fed3e10c82c702da367 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 7 Dec 2024 18:21:38 +0300 Subject: [PATCH] update vctest --- vctest/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vctest/main.cpp b/vctest/main.cpp index f8cd1767..afea3451 100644 --- a/vctest/main.cpp +++ b/vctest/main.cpp @@ -139,7 +139,7 @@ static bool run_test(const Config& config, const fs::path& path) { ss << " --test " << path; ss << " --res " << config.resDir; ss << " --dir " << config.workingDir; - ss << " >" << (config.workingDir / "output.txt") << " 2>&1"; + ss << " >" << (config.workingDir / "output.txt").string() << " 2>&1"; auto command = ss.str(); print_separator(std::cout);