mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-02 10:57:51 +02:00
New layer flavors: special nets, LEF pins.
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Vendored
+24
@@ -269,6 +269,18 @@ class DBReaders_TestClass < TestBase
|
||||
conf.pins_datatype = 18
|
||||
assert_equal(conf.pins_datatype, 18)
|
||||
|
||||
assert_equal(conf.produce_lef_pins, true)
|
||||
conf.produce_lef_pins = false
|
||||
assert_equal(conf.produce_lef_pins, false)
|
||||
|
||||
assert_equal(conf.lef_pins_suffix, ".PIN")
|
||||
conf.lef_pins_suffix = "LEFPIN"
|
||||
assert_equal(conf.lef_pins_suffix, "LEFPIN")
|
||||
|
||||
assert_equal(conf.lef_pins_datatype, 2)
|
||||
conf.lef_pins_datatype = 181
|
||||
assert_equal(conf.lef_pins_datatype, 181)
|
||||
|
||||
assert_equal(conf.produce_obstructions, true)
|
||||
conf.produce_obstructions = false
|
||||
assert_equal(conf.produce_obstructions, false)
|
||||
@@ -317,6 +329,18 @@ class DBReaders_TestClass < TestBase
|
||||
conf.routing_datatype = 22
|
||||
assert_equal(conf.routing_datatype, 22)
|
||||
|
||||
assert_equal(conf.produce_special_routing, true)
|
||||
conf.produce_special_routing = false
|
||||
assert_equal(conf.produce_special_routing, false)
|
||||
|
||||
assert_equal(conf.special_routing_suffix, "")
|
||||
conf.special_routing_suffix = "SPROUT"
|
||||
assert_equal(conf.special_routing_suffix, "SPROUT")
|
||||
|
||||
assert_equal(conf.special_routing_datatype, 0)
|
||||
conf.special_routing_datatype = 23
|
||||
assert_equal(conf.special_routing_datatype, 23)
|
||||
|
||||
assert_equal(conf.separate_groups, false)
|
||||
conf.separate_groups = true
|
||||
assert_equal(conf.separate_groups, true)
|
||||
|
||||
Reference in New Issue
Block a user