1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tests/bugs/caf/bug22976
2013-02-01 17:32:08 +04:00

26 lines
542 B
Plaintext
Executable File

puts "==========="
puts "OCC22976"
puts "==========="
######################################################
# A draw-command CopyDF failes to copy content of a label
######################################################
set BugNumber OCC22976
# Create a new document and set UndoLimit
NewDocument D
UndoLimit D 100
# Open a transaction
NewCommand D
SetReal D 0:1 1.2345
CopyDF D 0:1 0:2
catch { GetReal D 0:2 } catch_result
if { $catch_result == 1.2344999999999999 } {
puts "OK ${BugNumber}"
} else {
puts "Faulty ${BugNumber}"
}