Update of /cvsroot/compbench/CompBenchmarks++/UI
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14175
Modified Files:
UI.cpp UI.h
Log Message:
New messages (package's testing & checksuming).
Index: UI.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/UI/UI.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** UI.h 19 Sep 2006 17:11:05 -0000 1.3
--- UI.h 2 Oct 2006 19:08:26 -0000 1.4
***************
*** 37,40 ****
--- 37,42 ----
FileWrite, /*!< File has been written */
FileRemove, /*!< File has been removed */
+ ChecksumOK, /*!< Correct checksum message */
+ ChecksumFailed, /*!< Bad checksum */
DirectoryCheck, /*!< Directory has been checked */
DirectoryCreate, /*!< Directory has been created */
***************
*** 45,48 ****
--- 47,51 ----
BenchConfigure, /*!< Benchmark configured */
BenchMake, /*!< Benchmark (package) build */
+ BenchTest, /*!< Benchmark is tested */
BenchBench, /*!< Benchmark ran */
BenchResult, /*!< Benchmark result is being
Index: UI.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/UI/UI.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** UI.cpp 19 Sep 2006 17:10:25 -0000 1.3
--- UI.cpp 2 Oct 2006 19:08:26 -0000 1.4
***************
*** 39,42 ****
--- 39,48 ----
what="Removing";
break;
+ case ChecksumOK:
+ what="MD5 Checksum successfuly verified on";
+ break;
+ case ChecksumFailed:
+ what="Bad MD5 Checksum on";
+ break;
case DirectoryCheck:
what="Checking directory";
***************
*** 60,63 ****
--- 66,72 ----
what="Configuring";
break;
+ case BenchTest:
+ what="Testing";
+ break;
case BenchMake:
what="Making";
|