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;