瀏覽代碼

Log spelling and alignment

default_compile_flags
vector-of-bool 5 年之前
父節點
當前提交
726be6ec01
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      src/dds/build/plan/exe.cpp

+ 2
- 2
src/dds/build/plan/exe.cpp 查看文件

auto end = std::chrono::high_resolution_clock::now(); auto end = std::chrono::high_resolution_clock::now();
auto dur = std::chrono::duration_cast<std::chrono::microseconds>(end - start); auto dur = std::chrono::duration_cast<std::chrono::microseconds>(end - start);
if (res.okay()) { if (res.okay()) {
spdlog::info("{} - PASSED in {:>6n}μs", msg, dur.count());
spdlog::info("{} - PASSED - {:>9n}μs", msg, dur.count());
return std::nullopt; return std::nullopt;
} else { } else {
spdlog::error("{} - FAILED in {:>6n}μs [exitted {}]", msg, dur.count(), res.retc);
spdlog::error("{} - FAILED - {:>9n}μs [exited {}]", msg, dur.count(), res.retc);
test_failure f; test_failure f;
f.executable_path = exe_path; f.executable_path = exe_path;
f.output = res.output; f.output = res.output;

Loading…
取消
儲存