0029484: Avoid inheritance of the BRepAlgoAPI_Check from BRepBuilderAPI_MakeShape
[occt.git] / tests / bugs / modalg_7 / bug28844_1
CommitLineData
df119b4e 1puts "========"
2puts "OCC28844"
3puts "========"
4puts ""
5#######################################################
6# Regression vs 7.1.0: Exception is raised by the solid classification algorithm
7#######################################################
8
9restore [locate_data_file bug28844_Body.brep] b
10
11point p1 0 -10 0
12
13if {![regexp "The point is" [bclassify b p1]]} {
14 puts "Error: The Solid classification algorithm fails to classify the point"
15}
16
17point p2 10 10 10
18if {![regexp "The point is" [bclassify b p2]]} {
19 puts "Error: The Solid classification algorithm fails to classify the point"
20}
21
22point p3 0 10 0
23if {![regexp "The point is" [bclassify b p3]]} {
24 puts "Error: The Solid classification algorithm fails to classify the point"
25}