0014531: Boolean Operation Algorithm fails
[occt.git] / tests / bugs / modalg_5 / bug24203
CommitLineData
a86d3ec0 1puts "============"
2puts "OCC24203"
3puts "============"
4puts ""
5#######################################################################
6## Command "sameparameter" in DRAW on attached edge set tolerance equal to 116.
7#######################################################################
8
9pload DATAEXCHANGEKERNEL
10
11restore [locate_data_file bug24203_notspedge.brep] e1
12
13sameparameter e1
14
15regexp {Tolerance +MAX=([-0-9.+eE]+)} [tolerance e1] full MaxTol_1
16
17puts "MaxTolerance = $MaxTol_1"
18
19set MaxTol 0.20
20
21if { $MaxTol_1 > $MaxTol } {
22 puts "Faulty OCC24203"
23} else {
24 puts "OCC24203 OK"
25}