1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/xde/bug23009
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

27 lines
716 B
Plaintext
Executable File

puts "========================"
puts "OCC23009"
puts "========================"
puts ""
#######################################################################
# Request of a new feature for units management during step import
#######################################################################
set BugNumber OCC23009
set exception_status 1
set info [ stepfileunits [locate_data_file OCC22459-TEST2.stp] ]
set index1 [lsearch $info centimetre]
set index2 [lsearch $info DEGREES]
set index3 [lsearch $info steradian]
if {$index1 > -1 && $index2 > -1 && $index3 > -1} {
set exception_status 0
}
puts ""
if { ${exception_status} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}