mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
15 lines
421 B
Plaintext
Executable File
15 lines
421 B
Plaintext
Executable File
puts "=========="
|
|
puts "OCC24852: C r a s h on storage of an Ocaf document in XML file format"
|
|
puts "=========="
|
|
puts ""
|
|
|
|
NewDocument D XmlOcaf
|
|
|
|
set aTmpFile ${imagedir}/${casename}.xml
|
|
if { [catch {set res [SaveAs D $aTmpFile]}] != 0 } {
|
|
puts "Error : Crash on storage of an Ocaf document in XML file format"
|
|
} else {
|
|
puts "OK : Storage of an Ocaf document in XML file format is good"
|
|
}
|
|
file delete -force $aTmpFile
|