1
0
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:
emv 2013-02-22 16:22:01 +04:00
parent 0ed6989cfa
commit 87f59163e1
3 changed files with 48 additions and 0 deletions

22
tests/bugs/iges/bug23018 Normal file
View 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"
}

View 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

View 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