mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Splitting of subgroups bugs/modalg and bugs/moddata to optimise time of testing Correction of end file in group v3d Small correction of test case
28 lines
592 B
Plaintext
Executable File
28 lines
592 B
Plaintext
Executable File
puts "========"
|
|
puts "OCC22733"
|
|
puts "========"
|
|
puts ""
|
|
###########################################################
|
|
# Empty result for the extrema between a circle and a line
|
|
###########################################################
|
|
|
|
set BugNumber OCC22733
|
|
|
|
restore [locate_data_file bug22733_ez4.brep] ez4
|
|
restore [locate_data_file bug22733_ez17.brep] ez17
|
|
|
|
mkcurve c4 ez4
|
|
mkcurve c17 ez17
|
|
|
|
set extrema_res [extrema c4 c17]
|
|
set extrema_length [llength ${extrema_res} ]
|
|
|
|
if {${extrema_length} != 1 } {
|
|
puts "${BugNumber}: Faulty"
|
|
} else {
|
|
puts "${BugNumber}: OK"
|
|
}
|
|
|
|
set 3dviewer 0
|
|
|