SCMOS library cells passing LVS (with property errors though). Permute must be enabled before compare, duh.

This commit is contained in:
Matt Guthaus
2018-01-22 17:14:39 -08:00
parent fb2ed1d46c
commit 2468f224d9
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ class library_drc_test(unittest.TestCase):
drc_errors += 1
debug.error("Missing GDS file: {}".format(gds_name))
drc_errors += verify.run_drc(name, gds_name)
self.assertEqual(drc_errors, 0)
# fails if there are any DRC errors on any cells
self.assertEqual(drc_errors, 0)
globals.end_openram()
+1 -1
View File
@@ -28,7 +28,7 @@ class library_lvs_test(unittest.TestCase):
lvs_errors += 1
debug.error("Missing SPICE file {}".format(gds_name))
lvs_errors += verify.run_lvs(f, gds_name, sp_name)
self.assertEqual(lvs_errors, 0)
# fail if the error count is not zero
self.assertEqual(lvs_errors, 0)
globals.end_openram()