0024105: ShapeFix algorithm produces not correct result.
[occt.git] / tests / bugs / caf / bug644
CommitLineData
61c421bf 1puts "================="
2puts "OCC644"
3puts "SAM1513"
4puts "================="
5puts ""
6
7NewDocument D
8UndoLimit D 10
9
10NewCommand D
11SetVariable D 0:1 0 mm
12SetRelation D 0:2 x=10 0:1
13
14NewCommand D
15SetRelation D 0:2 x=20 0:1
16
17NewCommand D
18Undo D
19Redo D
20Undo D
21
22set RelationList [DumpRelation D 0:2]
23
24if {[llength ${RelationList}] <= 10} {
25 puts "OCC644: OK"
26} else {
27 puts "OCC644: ERROR"
28}
29
30