We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9177d22 commit cba37d5Copy full SHA for cba37d5
src/odb/test/test_group.tcl
@@ -79,7 +79,21 @@ proc test_destroy { } {
79
tearDown $db
80
}
81
82
+proc test_region_w_groups_destroy { } {
83
+ lassign [createSimpleDB] db lib
84
+ set block [create1LevelBlock $db $lib [$db getChip]]
85
+
86
+ # create region
87
+ set foo_region [odb::dbRegion_create $block foo_region]
88
+ # and a group
89
+ set foo_group [odb::dbGroup_create $foo_region foo_group]
90
+ # destroy region while it has group
91
+ odb::dbRegion_destroy $foo_region
92
+ tearDown $db
93
+}
94
95
test_default
96
test_destroy
97
+test_region_w_groups_destroy
98
puts "pass"
99
exit 0
0 commit comments