Преглед изворни кода

Tests failing with a signal are also test faillures

default_compile_flags
vector-of-bool пре 5 година
родитељ
комит
30b5bfb585
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/dds/build.cpp

+ 1
- 1
src/dds/build.cpp Прегледај датотеку

@@ -312,7 +312,7 @@ void dds::build(const build_params& params, const library_manifest& man) {
for (const auto& exe : test_exes) {
spdlog::info("Running test: {}", fs::relative(exe, params.out_root).string());
const auto test_res = run_proc({exe.string()});
if (test_res.retc != 0) {
if (!test_res.okay()) {
spdlog::error("TEST FAILED:\n{}", test_res.output);
}
}

Loading…
Откажи
Сачувај