1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/bug24852
kgv 30fa5f6713 0032705: Test - name clashes within temporary files within bugs/caf/bug23766_X
Several test cases writing temporary files have been corrected.
2021-12-02 21:14:57 +03:00

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