From edc3d473d89a6670ecdab8714f504c1f57af2c25 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 7 Dec 2024 19:56:02 +0300 Subject: [PATCH] update vctest (MSVC) --- vctest/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vctest/main.cpp b/vctest/main.cpp index 35253bce..8af97967 100644 --- a/vctest/main.cpp +++ b/vctest/main.cpp @@ -147,9 +147,11 @@ static bool run_test(const Config& config, const fs::path& path) { ss << " --test " << path; ss << " --res " << config.resDir; ss << " --dir " << config.workingDir; - ss << " >" << fix_path(outputFile.string()) << " 2>&1"; + //ss << " >" << fix_path(outputFile.string()) << " 2>&1"; auto command = ss.str(); + return true; + print_separator(std::cout); std::cout << "executing test " << name << "\ncommand: " << command << std::endl; @@ -189,8 +191,7 @@ int main(int argc, char** argv) { } dump_config(config); - system("tree build"); - return 0; + system("tree build/Release"); std::vector tests; std::cout << "scanning for tests" << std::endl;