Change unit tests to use verify instead of calibre. Debugging gds read comments in magic.py.

This commit is contained in:
Matt Guthaus
2017-11-14 16:24:26 -08:00
parent 4285e576f8
commit 37edd7cac6
47 changed files with 123 additions and 113 deletions
+3 -3
View File
@@ -9,7 +9,7 @@ import sys,os
sys.path.append(os.path.join(sys.path[0],".."))
import globals
import debug
import calibre
import verify
OPTS = globals.get_opts()
@@ -42,8 +42,8 @@ class write_driver_test(unittest.TestCase):
a.sp_write(tempspice)
a.gds_write(tempgds)
self.assertFalse(calibre.run_drc(a.name, tempgds))
self.assertFalse(calibre.run_lvs(a.name, tempgds, tempspice))
self.assertFalse(verify.run_drc(a.name, tempgds))
self.assertFalse(verify.run_lvs(a.name, tempgds, tempspice))
os.remove(tempspice)
os.remove(tempgds)