From d9efb682dd662b874cd15fb00cb664f5efc26252 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 7 Feb 2019 11:08:34 -0800 Subject: [PATCH] Do not clean up if preserve temp in local_drc_check --- README.md | 2 +- compiler/tests/testutils.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f70a2d87..2141c480 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ If I forgot to add you, please let me know! [Github issues]: https://github.com/VLSIDA/PrivateRAM/issues [Github pull request]: https://github.com/VLSIDA/PrivateRAM/pulls -[Github projects]: https://github.com/VLSIDA/PrivateRAM/projects +[Github projects]: https://github.com/VLSIDA/PrivateRAM [email me]: mailto:mrg+openram@ucsc.edu [dev-group]: mailto:openram-dev-group@ucsc.edu diff --git a/compiler/tests/testutils.py b/compiler/tests/testutils.py index 6b2a7dcf..274577b5 100755 --- a/compiler/tests/testutils.py +++ b/compiler/tests/testutils.py @@ -21,7 +21,8 @@ class openram_test(unittest.TestCase): if result != 0: self.fail("DRC failed: {}".format(w.name)) - self.cleanup() + if OPTS.purge_temp: + self.cleanup() def local_check(self, a, final_verification=False):