Merge branch 'add_wmask' of https://github.com/VLSIDA/PrivateRAM into add_wmask

This commit is contained in:
jsowash 2019-09-04 10:51:25 -07:00
commit 0ca94b3e28
1 changed files with 1 additions and 6 deletions

View File

@ -61,15 +61,10 @@ class openram_front_end_test(openram_test):
os.system(cmd)
# assert an error until we actually check a result
for extension in ["v", "lef", "sp"]:
for extension in ["v", "lef", "sp", "gds"]:
filename = "{0}/{1}.{2}".format(out_path,out_file,extension)
debug.info(1,"Checking for file: " + filename)
self.assertEqual(os.path.exists(filename),True)
# assert an error if we output the incomplete gds!
for extension in ["gds"]:
filename = "{0}/{1}.{2}".format(out_path,out_file,extension)
debug.info(1,"Checking file does NOT exist: " + filename)
self.assertEqual(os.path.exists(filename),False)
# Make sure there is any .lib file
import glob