From 8fcb551953afda2e7a1ae2623105f0e257eb1cc7 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Tue, 30 Jan 2018 08:03:54 -0800 Subject: [PATCH] Only perform DRC not LVS on transistors --- compiler/tests/03_ptx_1finger_nmos_test.py | 2 +- compiler/tests/03_ptx_1finger_pmos_test.py | 2 +- compiler/tests/03_ptx_3finger_nmos_test.py | 2 +- compiler/tests/03_ptx_3finger_pmos_test.py | 2 +- compiler/tests/03_ptx_4finger_nmos_test.py | 2 +- compiler/tests/03_ptx_4finger_pmos_test.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/tests/03_ptx_1finger_nmos_test.py b/compiler/tests/03_ptx_1finger_nmos_test.py index 40a9500f..ad906242 100644 --- a/compiler/tests/03_ptx_1finger_nmos_test.py +++ b/compiler/tests/03_ptx_1finger_nmos_test.py @@ -24,7 +24,7 @@ class ptx_test(openram_test): fet = ptx.ptx(width=tech.drc["minwidth_tx"], mults=1, tx_type="nmos") - self.local_check(fet) + self.local_drc_check(fet) OPTS.check_lvsdrc = True globals.end_openram() diff --git a/compiler/tests/03_ptx_1finger_pmos_test.py b/compiler/tests/03_ptx_1finger_pmos_test.py index cad75bca..579d320f 100644 --- a/compiler/tests/03_ptx_1finger_pmos_test.py +++ b/compiler/tests/03_ptx_1finger_pmos_test.py @@ -24,7 +24,7 @@ class ptx_test(openram_test): fet = ptx.ptx(width=tech.drc["minwidth_tx"], mults=1, tx_type="pmos") - self.local_check(fet) + self.local_drc_check(fet) OPTS.check_lvsdrc = True globals.end_openram() diff --git a/compiler/tests/03_ptx_3finger_nmos_test.py b/compiler/tests/03_ptx_3finger_nmos_test.py index 6ff93458..b0a1e5a3 100644 --- a/compiler/tests/03_ptx_3finger_nmos_test.py +++ b/compiler/tests/03_ptx_3finger_nmos_test.py @@ -26,7 +26,7 @@ class ptx_test(openram_test): tx_type="nmos", connect_active=True, connect_poly=True) - self.local_check(fet) + self.local_drc_check(fet) OPTS.check_lvsdrc = True globals.end_openram() diff --git a/compiler/tests/03_ptx_3finger_pmos_test.py b/compiler/tests/03_ptx_3finger_pmos_test.py index 55f7d202..96065bae 100644 --- a/compiler/tests/03_ptx_3finger_pmos_test.py +++ b/compiler/tests/03_ptx_3finger_pmos_test.py @@ -26,7 +26,7 @@ class ptx_test(openram_test): tx_type="pmos", connect_active=True, connect_poly=True) - self.local_check(fet) + self.local_drc_check(fet) OPTS.check_lvsdrc = True globals.end_openram() diff --git a/compiler/tests/03_ptx_4finger_nmos_test.py b/compiler/tests/03_ptx_4finger_nmos_test.py index e109de51..0a311784 100644 --- a/compiler/tests/03_ptx_4finger_nmos_test.py +++ b/compiler/tests/03_ptx_4finger_nmos_test.py @@ -26,7 +26,7 @@ class ptx_test(openram_test): tx_type="nmos", connect_active=True, connect_poly=True) - self.local_check(fet) + self.local_drc_check(fet) OPTS.check_lvsdrc = True globals.end_openram() diff --git a/compiler/tests/03_ptx_4finger_pmos_test.py b/compiler/tests/03_ptx_4finger_pmos_test.py index d38d7981..4acad6fb 100644 --- a/compiler/tests/03_ptx_4finger_pmos_test.py +++ b/compiler/tests/03_ptx_4finger_pmos_test.py @@ -26,7 +26,7 @@ class ptx_test(openram_test): tx_type="pmos", connect_active=True, connect_poly=True) - self.local_check(fet) + self.local_drc_check(fet) OPTS.check_lvsdrc = True globals.end_openram()