mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
21 lines
649 B
Plaintext
21 lines
649 B
Plaintext
puts "========================================================================================="
|
|
puts "OCC28026: Modeling Data - BRepTools::Clean() does not clean all triangulation from shape "
|
|
puts "========================================================================================="
|
|
puts ""
|
|
|
|
restore [locate_data_file bug28026_Ball.brep] b
|
|
|
|
set expected {"0 triangles" "0 nodes"
|
|
"0 polygons on triangulation"
|
|
"Maximal deflection 0"}
|
|
|
|
tclean b -force
|
|
set output [trinfo b]
|
|
|
|
foreach data ${expected} {
|
|
if ![regexp $data $output] {
|
|
puts "Error: Not cleaned all trinfo in '$data'"
|
|
break;
|
|
}
|
|
}
|