0030760: Modeling Algorithms - Intersection fails in Occt 7.3.0
[occt.git] / tests / bugs / modalg_7 / bug29701_2
index f179c21..d6e9227 100644 (file)
@@ -1,34 +1,35 @@
 puts "========"
-puts "OCC29701"
+puts "OCC29701: BRepTools::Update(Face) unexpectedly updates UV points of pcurve"
 puts "========"
 puts ""
-#################################################
-# BRepTools::Update(Face) unexpectedly updates UV points of pcurve
-#################################################
 
 brestore [locate_data_file bug29701_hullshape.brep] s
 
 # mesh the face
-repeat 2 {
-  if {![regexp "NoError" [incmesh s 0.1]]} {
-    puts "Error: Unable to build triangulation"
-  }
+if {![regexp "NoError" [incmesh s 0.1]]} {
+  puts "Error: Unable to build triangulation"
+}
+
+if {![regexp "Reused" [incmesh s 0.1]]} {
+  puts "Error: Unable to build triangulation"
 }
 
 tcopy s copy
 
 # mesh the copy face
-repeat 2 {
-  if {![regexp "NoError" [incmesh copy 0.1]]} {
-    puts "Error: Unable to build triangulation on copy shape"
-  }
+if {![regexp "NoError" [incmesh copy 0.1]]} {
+  puts "Error: Unable to build triangulation on copy shape"
+}
+
+if {![regexp "Reused" [incmesh copy 0.1]]} {
+  puts "Error: Unable to build triangulation on copy shape"
 }
 
 fixshape fixed s
 
 # mesh the fixed face
 repeat 2 {
-  if {![regexp "NoError" [incmesh fixed 0.1]]} {
+  if {![regexp "Reused" [incmesh fixed 0.1]]} {
     puts "Error: Unable to build triangulation on fixed shape"
   }
 }