1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/demo/bug25344_3
luz paz 7b5e532f83 0031939: Coding - correction of spelling errors in comments [part 7]
Fix various typos

Fixed via codespell v2.1.dev
2021-01-20 21:27:44 +03:00

33 lines
778 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 "ERROR: 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"
}
}