mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Adjusting testing cases for current state of OCCT
This commit is contained in:
parent
0ed6989cfa
commit
87f59163e1
22
tests/bugs/iges/bug23018
Normal file
22
tests/bugs/iges/bug23018
Normal file
@ -0,0 +1,22 @@
|
||||
puts "========"
|
||||
puts "CR23018"
|
||||
puts "========"
|
||||
puts ""
|
||||
#######################################
|
||||
## Open CASCADE incorrectly writes/reads IGES Tabulated Cylinders (Type 122)
|
||||
#######################################
|
||||
|
||||
restore [locate_data_file bug23018_f-ext.brep] f
|
||||
brepiges f ${imagedir}/bug23018_f-ext.igs
|
||||
set info [entity 6]
|
||||
regexp {Starting +Point +: +\x28([-0-9.+eE]+),([-0-9.+eE]+),([-0-9.+eE]+)\x29} ${info} full x1 y1 z1
|
||||
regexp {End +Point +: +\x28([-0-9.+eE]+),([-0-9.+eE]+),([-0-9.+eE]+)\x29} ${info} full x2 y2 z2
|
||||
puts "x1=$x1 y1=$y1 z1=$z1"
|
||||
puts "x2=$x2 y2=$y2 z2=$z2"
|
||||
set tolerance 1.e-7
|
||||
if { [expr abs(${x1} - ${tolerance})] < 0. || ${x1} > 1. || [expr abs(${y1} - ${tolerance})] < 0.|| ${y1} > 1. } {
|
||||
puts "Error : Bad Starting Point"
|
||||
}
|
||||
if { [expr abs(${x2} - ${tolerance})] < 0. || ${x2} > 1. || [expr abs(${y2} - ${tolerance})] < 0. || ${y2} > 1.} {
|
||||
puts "Error : Bad Starting Point"
|
||||
}
|
13
tests/bugs/modalg_4/bug23548
Normal file
13
tests/bugs/modalg_4/bug23548
Normal file
@ -0,0 +1,13 @@
|
||||
puts "============"
|
||||
puts "CR23548"
|
||||
puts "============"
|
||||
puts ""
|
||||
#######################################################################
|
||||
# Boolean operation between two faces fails
|
||||
#######################################################################
|
||||
|
||||
restore [locate_data_file bug23548_f1.brep] b1
|
||||
|
||||
restore [locate_data_file bug23548_f2.brep] b2
|
||||
|
||||
bop b1 b2
|
13
tests/bugs/modalg_4/bug23704
Normal file
13
tests/bugs/modalg_4/bug23704
Normal file
@ -0,0 +1,13 @@
|
||||
puts "========"
|
||||
puts "CR23704"
|
||||
puts "========"
|
||||
########################################################
|
||||
## The program hang-up during intersection of two edges.
|
||||
########################################################
|
||||
|
||||
cpulimit 100
|
||||
|
||||
restore [locate_data_file bug23704_e1.brep] b1
|
||||
restore [locate_data_file bug23704_e2.brep] b2
|
||||
|
||||
bop b1 b2
|
Loading…
x
Reference in New Issue
Block a user