Adding of testing cases from subgroups 937 940 and 941 of CHL group
[occt.git] / tests / bugs / moddata / bug23464_5
diff --git a/tests/bugs/moddata/bug23464_5 b/tests/bugs/moddata/bug23464_5
deleted file mode 100755 (executable)
index 275d6d7..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-puts "============"
-puts "CR23464"
-puts "============"
-puts ""
-##########################################################################################################
-# Projection algorithm produces wrong results
-##########################################################################################################
-
-set int_check 3
-set fract_check 1415927
-
-restore [locate_data_file bug23464_c57.draw] c57
-restore [locate_data_file bug23464_s46.draw] s46
-
-project result c57 s46
-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"
-}
-
-
-
-
-