update vctest (MSVC)

This commit is contained in:
MihailRis 2024-12-07 19:56:02 +03:00
parent bc102075f2
commit edc3d473d8

View File

@ -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<fs::path> tests;
std::cout << "scanning for tests" << std::endl;