mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023698: BRepBuilderAPI_Copy creates invalid copy
Added test case bugs/modalg_5/bug23698
This commit is contained in:
parent
196b01482b
commit
e1cbc34c5f
@ -4,8 +4,3 @@ bcommon result b a
|
||||
set length 942.478
|
||||
set nbsh_v 2
|
||||
set nbsh_e 2
|
||||
|
||||
# OCC23698
|
||||
tcopy result r
|
||||
lprops result
|
||||
lprops r
|
||||
|
24
tests/bugs/modalg_5/bug23698
Normal file
24
tests/bugs/modalg_5/bug23698
Normal file
@ -0,0 +1,24 @@
|
||||
puts "========"
|
||||
puts "OCC23698"
|
||||
puts "========"
|
||||
puts ""
|
||||
##############################################
|
||||
# BRepBuilderAPI_Copy creates invalid copy
|
||||
##############################################
|
||||
|
||||
restore [locate_data_file case_1_solid.brep] a
|
||||
restore [locate_data_file case_1_wire3.brep] b
|
||||
bcommon result b a
|
||||
tcopy result r
|
||||
|
||||
regexp {Mass +: +([-0-9.+eE]+)} [lprops result] full anEdge
|
||||
if { ${anEdge} == 0 } {
|
||||
puts "Error: Common operation is wrong"
|
||||
}
|
||||
|
||||
regexp {Mass +: +([-0-9.+eE]+)} [lprops r] full aCopyEdge
|
||||
if { ${anEdge} != ${aCopyEdge} } {
|
||||
puts "Error: Copy is wrong"
|
||||
} else {
|
||||
puts "OK: Copy is correct"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user