From eadb5d5e4812c4ae348d4190cb47f268ede4dc2e Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 4 Sep 2019 10:26:54 -0700 Subject: [PATCH] Allow gds file for front end with new options --- compiler/tests/30_openram_front_end_test.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/compiler/tests/30_openram_front_end_test.py b/compiler/tests/30_openram_front_end_test.py index db75fe0a..3eb28537 100755 --- a/compiler/tests/30_openram_front_end_test.py +++ b/compiler/tests/30_openram_front_end_test.py @@ -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