1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/moddata/bug23464_2
abv 351bbcba7e 0023161: Select publicly accessible data files for OCCT tests
Duplicated data files are removed.
New command testfile added for automation of analysis of the new data files before adding to the data base.
2012-11-13 13:45:16 +04:00

36 lines
878 B
Plaintext
Executable File

puts "============"
puts "CR23464"
puts "============"
puts ""
##########################################################################################################
# Projection algorithm produces wrong results
##########################################################################################################
set int_check 3
set fract_check 1415927
restore [locate_data_file bug23464_c50.draw] c50
restore [locate_data_file bug23464_s37.draw] s37
project result c50 s37
set info [length result]
regexp {is +([-0-9.+eE]+)} $info full num
set int_part [expr round($num)]
set y [expr $num - round($num)]
set z [expr $y*10000000]
set fract_part [expr round($z)]
if { ${int_check} != ${int_part} } {
puts "Error : Integer part of result is incorrect"
}
if { ${fract_check} != ${fract_part} } {
puts "Error : Fractional part of result is incorrect"
}