mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
31 lines
649 B
Plaintext
Executable File
31 lines
649 B
Plaintext
Executable File
puts "========================"
|
|
puts "OCC20404"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# Command distmini gives wrong result for given shapes
|
|
#######################################################################
|
|
|
|
set BugNumber OCC20404
|
|
|
|
restore [locate_data_file OCC20404-line1.brep] e1
|
|
restore [locate_data_file OCC20404-line2.brep] e2
|
|
|
|
distmini d e1 e2
|
|
puts "Distance=[dval d_val]"
|
|
|
|
if [expr [dval d_val] > 7.e-13] {
|
|
set status 1
|
|
} else {
|
|
set status 0
|
|
}
|
|
|
|
# Resume
|
|
puts ""
|
|
if { ${status} != 0 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|