From 656477f23e31d7fea06051b1e998f45b7164603b Mon Sep 17 00:00:00 2001 From: Dongju Chae Date: Tue, 27 Jul 2021 10:56:57 +0900 Subject: [PATCH] [Test] Fix the print format of bulk test. This patch fixes the print format of bulk test. When an error occurs, a weird value can be printed. Signed-off-by: Dongju Chae --- tests/apptests/tvn_triv2_bulk.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/apptests/tvn_triv2_bulk.cc b/tests/apptests/tvn_triv2_bulk.cc index 3553132..469e24f 100644 --- a/tests/apptests/tvn_triv2_bulk.cc +++ b/tests/apptests/tvn_triv2_bulk.cc @@ -99,7 +99,8 @@ main (int argc, char **argv) { if (dir->d_name[0] == '.') continue; - cerr << "[APPTEST] " << left << setw (40) << dir->d_name << " Running... "; + cerr << "[APPTEST] " << left << std::setfill (' ') << setw (40); + cerr << dir->d_name << " Running... "; /** initialize triv2 device */ string path (dir_str); -- 2.7.4