0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / tests / bugs / caf / bug22976
CommitLineData
3bea4c16 1puts "==========="
2puts "OCC22976"
3puts "==========="
4######################################################
7b5e532f 5# A draw-command CopyDF fails to copy content of a label
3bea4c16 6######################################################
7
8set BugNumber OCC22976
9
10# Create a new document and set UndoLimit
11NewDocument D
12UndoLimit D 100
13
14# Open a transaction
15NewCommand D
16
17SetReal D 0:1 1.2345
18CopyDF D 0:1 0:2
19catch { GetReal D 0:2 } catch_result
20
21if { $catch_result == 1.2344999999999999 } {
22 puts "OK ${BugNumber}"
23} else {
24 puts "Faulty ${BugNumber}"
25}