mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Class Standard_BaseDriver is inherited from Standard_Transient, its descendants are updated accordingly. Handle is used to manipulate objects of this class and its descendants (instead of references or raw pointers) to ensure automatic destruction. Added test bugs caf bug31546 Related: - Standard_OVERRIDE is added in declarations of virtual methods in descendants of Storage_BaseDriver - Methods operator << and operator >> are removed in descendants of Storage_BaseDriver (they repeat the same methods inherited from the base class) - Typedef PCDM_BaseDriverPointer is marked as deprecated - Unused class DDI_Ostream is removed - Private field Standard_Transient::count is renamed to myRefCount_ to avoid compiler warnings if the same name is used within the scope of a descendant class - Output of meaningful error messages is restored in DRAW commands fsdread and fsdwrite
20 lines
482 B
Plaintext
20 lines
482 B
Plaintext
puts "==========="
|
|
puts "0031546: Application Framework - Memory leak (100 bytes) on Load / Close OCAF document"
|
|
puts "==========="
|
|
|
|
puts "Preparing empty document"
|
|
set docname ${imagedir}/${casename}.cbf
|
|
NewDocument D BinOcaf
|
|
SaveAs D $docname
|
|
Close D
|
|
|
|
puts "Executing Load / Close in cycle to see if allocated heap memory grows"
|
|
set listmem {}
|
|
for {set i 1} {$i < 10} {incr i} {
|
|
Open $docname D
|
|
Close D
|
|
|
|
lappend listmem [meminfo h]
|
|
checktrend $listmem 0 0 "Memory leak"
|
|
}
|