mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
A line is uncommented. This line sets the successfully read & symbol. Correction and adding test cases for issue CR23864
23 lines
759 B
Plaintext
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"
|
|
}
|