[Compbench-devel] CompBenchmarks++/libcompbenchmarks/UI UI-Console.cpp, 1.6, 1.7
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-08-21 19:54:42
|
Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/UI In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv2504 Modified Files: UI-Console.cpp Log Message: Minor cosmetic changes in shown informations. Index: UI-Console.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/UI/UI-Console.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** UI-Console.cpp 1 Aug 2007 19:48:38 -0000 1.6 --- UI-Console.cpp 21 Aug 2007 19:54:39 -0000 1.7 *************** *** 163,167 **** break; case UIMsg::BenchmarkBench: ! curmsg+="Benchmarking "; break; case UIMsg::PackageUninstall: --- 163,167 ---- break; case UIMsg::BenchmarkBench: ! curmsg+="Benchmarking result(s)"; break; case UIMsg::PackageUninstall: *************** *** 280,284 **** case UIMsg::PlanRun: curmsg+="Running benchmark plan "; ! curmsg+=objectField(_msg, "name"); break; --- 280,284 ---- case UIMsg::PlanRun: curmsg+="Running benchmark plan "; ! // curmsg+=objectField(_msg, "name"); break; *************** *** 376,380 **** break; case UIMsg::KO: ! std::cout << "Failed."; lastisLF=0; p_sp=0; --- 376,384 ---- break; case UIMsg::KO: ! std::cout << "Failed"; ! if (N->Value()!="") ! std::cout << " : " << N->Value(); ! ! std::cout << "."; lastisLF=0; p_sp=0; |