Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Plan
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv9777
Modified Files:
Plan-Batch.cpp Plan.cpp
Log Message:
Updates due to changes in CBM::Benchmark::Bench() interface : disabled calls.
Index: Plan.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Plan/Plan.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Plan.cpp 30 May 2007 17:04:03 -0000 1.11
--- Plan.cpp 6 Jun 2007 21:42:57 -0000 1.12
***************
*** 191,195 ****
}
! bmValue=B->Bench();
}
result=new CBM::Result(bmValue,
--- 191,195 ----
}
! // bmValue=B->Bench(); arf. !!!
}
result=new CBM::Result(bmValue,
Index: Plan-Batch.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Plan/Plan-Batch.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Plan-Batch.cpp 30 May 2007 17:02:27 -0000 1.2
--- Plan-Batch.cpp 6 Jun 2007 21:42:57 -0000 1.3
***************
*** 177,181 ****
return(0);
}
!
benchmarks.push_back(_benchmark);
stop();
--- 177,184 ----
return(0);
}
! if (_benchmark->Package()->getStatus()<CBM::Package::Preconfigured) {
! return(0);
! }
!
benchmarks.push_back(_benchmark);
stop();
***************
*** 385,389 ****
}
! bmValue=B->Bench();
}
result=new CBM::Result(bmValue,
--- 388,392 ----
}
! // bmValue=B->Bench(C, O); arf. !!!
}
result=new CBM::Result(bmValue,
|