mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
In parallel mode, limit number of jobs in the queue to avoid slowdown occurring with long queues Obsolete DRAW tools removed Improvement of processing of test log: - log is collected as list and not as string for better performance - short table of test cases (TOC) is added in HTML log - algorithm to combine test cases in one row in HTML log is improved to avoid long lines (group bugs) Parse rules corrected to ignore irrelevant debug messages, and to correctly report tests 3rdparty export as skipped or BAD when Gl2Ps is missing or is built in incompatible mode on windows Tests corrected to pass in Debug mode on Windows
31 lines
721 B
Plaintext
Executable File
31 lines
721 B
Plaintext
Executable File
puts "========================"
|
|
puts "OCC20683"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# BRepExtrema_ExtCC produces incomplete result.
|
|
#######################################################################
|
|
|
|
set BugNumber OCC20683
|
|
|
|
# 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]
|
|
set res_length [llength ${res_list}]
|
|
puts "res_length = ${res_length}"
|
|
|
|
# Resume
|
|
puts ""
|
|
if { ${res_length} != 3 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|