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/bug23864
vro 80cd454f1d 0023864: An & symbol is read incorrectly from a XML Ocaf file
A line is uncommented. This line sets the successfully read & symbol.
Correction and adding test cases for issue CR23864
2013-08-15 17:24:06 +04:00

23 lines
759 B
Plaintext

puts "============"
puts "OCC23864"
puts "============"
puts ""
###################################################################################################################
# An & symbol is read incorrectly from a XML Ocaf file
###################################################################################################################
#Open an Ocaf XML document
Open [locate_data_file bug23864_testAmp.xml] D
#Get name attribute (containing an & symbol)
GetName D 0:1
#Get an array of strings (containing an & symbol)
set info [GetExtStringArray D 0:1]
if { [regexp "\&" $info] != 1 } {
puts "Error : An \& symbol is read incorrectly from a XML Ocaf file"
} else {
puts "OK : An \& symbol is read correctly from a XML Ocaf file"
}