0026855: Draw commands to debug Boolean Operations Algorithm
[occt.git] / tests / bugs / moddata_2 / bug909
CommitLineData
352ffd73 1puts "TODO OCC12345 ALL: Faulty OCC909"
2
3pload QAcommands
4
5puts "======="
6puts "OCC909"
7puts "======="
8puts ""
9#######################################################
10## BRepTools_WireExplorer give different number of edges in dev and FIXOCC40
11#######################################################
12
13restore [locate_data_file OCC909_f.rle] f
14restore [locate_data_file OCC909_w.rle] w
15
16if { [ catch { set result [OCC909 w f] } ] } {
17 puts "Faulty OCC909"
18} else {
19 set count 0
20 regexp {Count = ()} $result full count
21 if {$count != 2} {
22 puts "Faulty OCC909"
23 } else {
24 puts "OCC909 OK"
25 }
26}
27