1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0027608: Tests - drop useless performance comparison from perf/fclasses/handle

Correction of test case perf/fclasses/handle according to the current behavior
This commit is contained in:
kgv 2016-06-16 12:44:18 +03:00 committed by bugmaster
parent 3672371654
commit f767cea690
2 changed files with 4 additions and 13 deletions

View File

@ -439,7 +439,7 @@ static Standard_Integer QAHandleInc (Draw_Interpretor& theDI,
theDI << "Time of creating and destroying " << aNbIters << " smart pointers to the same object, per item, ns:";
{
{
QATimer aTimer (theDI, "\nOCCT Handle: ", QATimer::ns, aNbIters);
QATimer aTimer (theDI, "\nOCCT Handle: ", QATimer::ns, aNbIters);
{
std::vector<Handle(Standard_Transient)> aHandles (aNbIters);
for (Standard_Integer anIter = 0; anIter < aNbIters; ++anIter)
@ -449,7 +449,7 @@ static Standard_Integer QAHandleInc (Draw_Interpretor& theDI,
}
}
{
QATimer aTimer (theDI, "\nsC++ shared_ptr: ", QATimer::ns, aNbIters);
QATimer aTimer (theDI, "\nC++ shared_ptr: ", QATimer::ns, aNbIters);
{
std::vector< std::shared_ptr<Standard_Transient> > aSharePointers (aNbIters);
for (Standard_Integer anIter = 0; anIter < aNbIters; ++anIter)

View File

@ -1,4 +1,4 @@
puts "TODO OCC24023 ALL: Checking local reference of handle to base type to temporary handle object"
puts "TODO OCC24023 Windows: Checking local reference of handle to base type to temporary handle object"
puts "========"
puts "CR24023, check operability and performance of OCCT RTTI and handles"
@ -13,13 +13,4 @@ QAHandleKind
QAHandleOps
# check performance of creation and destruction handles, vs. C++ shared_ptr
set res [QAHandleInc]
set res_lines [split $res \n]
set time_occt [lindex [split [lindex $res_lines 1] :] end]
set time_std [lindex [split [lindex $res_lines 2] :] end]
set ratio [expr $time_occt / $time_std]
# allow 5% deviation
if { $ratio > 1.05 } {
puts "Error: OCCT handle is too slow: $time_occt vs. $time_std of shared_ptr"
}
QAHandleInc