mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Since now TDataStd_ExtStringArray::Value() returns a constant reference to the string value. Also, a draw-command GetExtStringArray is modified to manipulate with the string by a constant reference. Added test case bugs/caf/bug23912
25 lines
656 B
Plaintext
25 lines
656 B
Plaintext
puts "============"
|
|
puts "OCC23912"
|
|
puts "============"
|
|
puts ""
|
|
###################################################################################################################
|
|
# TDataStd_ExtStringArray::Value() returns a copy of TCollection_ExtededString, but it might return a reference
|
|
###################################################################################################################
|
|
|
|
NewDocument D
|
|
SetExtStringArray D 0:1 0 1 5 "A" "B" "C" "D" "E"
|
|
set info [GetExtStringArray D 0:1]
|
|
|
|
if { [regexp "A B C D E" $info] != 1 } {
|
|
puts "Error : function returns wrong value"
|
|
} else {
|
|
puts "OK : function works properly"
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|