Skip to content

Commit

Permalink
Tests: unraveller print nicer
Browse files Browse the repository at this point in the history
  • Loading branch information
bramoosterhuis committed Sep 11, 2024
1 parent 469b41b commit 4393a04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Tests/unraveller/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class MemProber {

static void Dump(const mstat_t& mstat, std::ostream& ostream = std::cout)
{
ostream << " PID: " << getpid() << ", RSS: " << mstat.resident << "kB, VSZ: " << mstat.size << "kB" << std::endl;
ostream << " PID: " << getpid() << ", RSS: " << mstat.resident << "kB, VSZ: " << mstat.size << "kB";
}

static void Dump(std::ostream& ostream)
Expand Down Expand Up @@ -478,6 +478,8 @@ int main(int argc, char** argv)

if (consoleOptions.Type != App::IThreader::Type::NONE) {

App::Printer() << "Test with " << consoleOptions.Count << " threads allocating " << consoleOptions.Stack << "kB" << std::endl;

App::WorkLoad job(consoleOptions.Stack);

std::atomic_bool started(false);
Expand Down

0 comments on commit 4393a04

Please sign in to comment.