mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Use NCollection_Map instead of instantiation of TCollection_Map Test-cases for issue #25344 Correct error in test script: the shape variable assigned by the command 'restore' must not be referred by '$'.
33 lines
779 B
Plaintext
33 lines
779 B
Plaintext
puts "========"
|
|
puts "OCC25344"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################
|
|
# Draw variables do not follow the scope of TCL level
|
|
#######################################################
|
|
|
|
proc boxproc {shape} {
|
|
upvar $shape local_shape
|
|
box local_shape 1 1 1
|
|
}
|
|
|
|
boxproc mybox
|
|
|
|
if {[dtyp mybox] == ""} {
|
|
puts "ERROR: box mybox is not created"
|
|
} else {
|
|
puts "SUCCESS: mybox is created"
|
|
if {[lsearch [directory] mybox] == -1} {
|
|
puts "ERRROR: but it is absent among TCL variables"
|
|
} else {
|
|
puts "SUCCESS: and it is present among TCL variables"
|
|
}
|
|
}
|
|
|
|
if {[dtyp local_shape] != ""} {
|
|
puts "Box local_shape is created"
|
|
if {[lsearch [directory] local_shape] == -1} {
|
|
puts "ERROR: but it is absent among TCL variables"
|
|
}
|
|
}
|