Flush test name to stdout when starting to run a test
This commit is contained in:
parent
2c3565df61
commit
5155175d9b
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ int main(int argc, char ** argv)
|
||||||
|
|
||||||
std::cout
|
std::cout
|
||||||
<< bold << '[' << std::setfill(' ') << std::setw(test_index_len) << std::right << i << '/' << test_count << "] " << name
|
<< bold << '[' << std::setfill(' ') << std::setw(test_index_len) << std::right << i << '/' << test_count << "] " << name
|
||||||
<< normal << std::string(max_name_length + 5 - name.size(), '.');
|
<< normal << std::string(max_name_length + 5 - name.size(), '.') << std::flush;
|
||||||
|
|
||||||
psemek::test::context ctx;
|
psemek::test::context ctx;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue