mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
A draw-command SetRealArrayValue. It is necessary to reproduce the crash. A fix + some additional draw-commands Test cases for issue CR25317
36 lines
887 B
Plaintext
Executable File
36 lines
887 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC25317"
|
|
puts "================"
|
|
puts ""
|
|
###################################################################################################
|
|
# Failure on attempt to save an Ocaf document with a long double array attribute in a Xml file
|
|
###################################################################################################
|
|
|
|
set i 1
|
|
set nb 50000
|
|
|
|
set FileName $imagedir/${test_image}.xml
|
|
file delete ${FileName}
|
|
if [file exists ${FileName}] {
|
|
puts "Error: There is temporary ${FileName} file"
|
|
}
|
|
|
|
#Allocate a large array.
|
|
NewDocument D XmlOcaf
|
|
SetRealArray D 0:1 0 1 $nb
|
|
|
|
#Fill-in the large array.
|
|
repeat $nb {
|
|
SetRealArrayValue D 0:1 $i 1.234
|
|
incr i 1
|
|
}
|
|
|
|
#Save the document in XML format.
|
|
SaveAs D ${FileName}
|
|
|
|
if [file exists ${FileName}] {
|
|
puts "OK: There is ${FileName} file"
|
|
} else {
|
|
puts "Error: There is not ${FileName} file"
|
|
}
|