1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
nbv 9e20ed5793 0023547: Tests failures in debug mode
1. DRAW-commands for curve/surface continuity returning were changed.
2. Output of "distmini" DRAW-command is amended.
3. Function MinMax() was moved from Standard_Real to IntPatch_ImpImpIntersection_4.gxx.
4. Incorrect computing of nbcurveC1 in Geom2dConvert::C0BSplineToC1BSplineCurve(...) function was liquidated.

Test cases were changed.
2014-10-16 16:45:13 +04:00

29 lines
745 B
Plaintext
Executable File

puts "========================"
puts "OCC20683"
puts "========================"
puts ""
#######################################################################
# BRepExtrema_ExtCC produces incomplete result.
#######################################################################
set BugNumber OCC20683
set RefResult "\"distmini\" command returns:\nd_val d d2 \nOutput is complete."
# finite line is used
line ll 6834.93 -4100 500 0 0 1
trim trll ll -1000 -500
mkedge tree trll
restore [locate_data_file OCC20683_circ1.brep] e1
restore [locate_data_file OCC20683_circ2.brep] e2
set res_list [distmini d e1 e2]
# Resume
puts ""
if { [regexp $RefResult $res_list] != 1 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}