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/bug27433
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

22 lines
597 B
Plaintext
Executable File

puts "==========="
puts "OCC27433 Opening/Saving OCAF Documents With Own Document Format Does Not Work"
puts "==========="
# make variable ends with "/" to get empty myName in OSD_Path
dsetenv "CSF_PluginDefaults" [dgetenv CSF_PluginDefaults]/
# Create simple document with some data
NewDocument Doc BinOcaf
SetInteger Doc 0:2 100
# Save the document
set aTmpFile ${imagedir}/${casename}.cbf
puts ${aTmpFile}
catch {SaveAs Doc ${aTmpFile}}
if { ![file exists ${aTmpFile}] } {
puts "Error: Can not save the file with path to plugins ended with slash"
}
Close Doc
file delete -force $aTmpFile