mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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 '$'.
28 lines
618 B
Plaintext
28 lines
618 B
Plaintext
puts "========"
|
|
puts "OCC25344"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################
|
|
# Draw variables do not follow the scope of TCL level
|
|
#######################################################
|
|
|
|
proc setproc {var val} {
|
|
upvar $var local_var
|
|
dset local_var $val
|
|
}
|
|
|
|
setproc a 1.1
|
|
|
|
puts "dval a = [dval a]"
|
|
puts "dval local_var = [dval local_var]"
|
|
|
|
if {[dval a] == 0} {
|
|
puts "ERROR: value is not set"
|
|
}
|
|
if {[dval local_var] == -1} {
|
|
puts "ERROR: local_var is set, but must not"
|
|
if {[lsearch [directory] local_var] == -1} {
|
|
puts "ERROR: as it is absent among TCL variables"
|
|
}
|
|
}
|