mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
28 lines
686 B
Plaintext
28 lines
686 B
Plaintext
puts "==========="
|
|
puts "OCC25112"
|
|
puts "==========="
|
|
puts ""
|
|
###########################################################################
|
|
# Undo of modification of the attribute TDataStd_IntPackedMap works wrong
|
|
###########################################################################
|
|
|
|
NewDocument D
|
|
UndoLimit D 10
|
|
SetIntPackedMap D 0:1 1 319
|
|
puts "initial: [GetIntPackedMap D 0:1]"
|
|
|
|
OpenCommand D
|
|
ChangeIntPackedMap_Add D 0:1 344
|
|
ChangeIntPackedMap_Rem D 0:1 319
|
|
CommitCommand D
|
|
puts "after changes: [GetIntPackedMap D 0:1]"
|
|
|
|
Undo D
|
|
|
|
set map [GetIntPackedMap D 0:1]
|
|
puts "after undo: $map"
|
|
|
|
if {$map != "319"} {
|
|
puts "ERROR: OCC25112 is reproduced. Expected map content is 319"
|
|
}
|