mirror of
https://github.com/The-OpenROAD-Project/OpenDB.git
synced 2026-03-06 17:31:17 +08:00
32 lines
888 B
Python
32 lines
888 B
Python
import opendbpy as odb
|
|
import os
|
|
|
|
current_dir = os.path.dirname(os.path.realpath(__file__))
|
|
tests_dir = os.path.abspath(os.path.join(current_dir, os.pardir))
|
|
opendb_dir = os.path.abspath(os.path.join(tests_dir, os.pardir))
|
|
data_dir = os.path.join(tests_dir, "data")
|
|
|
|
db = odb.dbDatabase.create()
|
|
odb.read_lef(db, os.path.join(data_dir, "gscl45nm.lef"))
|
|
odb.read_def(db, os.path.join(data_dir, "design.def"))
|
|
chip = db.getChip()
|
|
tech = db.getTech()
|
|
libs = db.getLibs()
|
|
|
|
if chip == None:
|
|
exit("ERROR: READ DEF Failed")
|
|
|
|
db_file = os.path.join(opendb_dir, "build/export.db")
|
|
export_result = odb.write_db(db, db_file)
|
|
if export_result!=1:
|
|
exit("Export DB Failed")
|
|
|
|
new_db = odb.dbDatabase.create()
|
|
new_db = odb.read_db(new_db, db_file)
|
|
|
|
if new_db == None:
|
|
exit("Import DB Failed")
|
|
|
|
if odb.db_diff(db, new_db):
|
|
exit("Error: Difference found between exported and imported DB")
|