OpenRAM/compiler/tests/04_pand3_test.py

41 lines
1.1 KiB
Python
Raw Normal View History

2019-08-08 01:33:29 +02:00
#!/usr/bin/env python3
# See LICENSE for licensing information.
#
2021-01-22 20:23:28 +01:00
# Copyright (c) 2016-2021 Regents of the University of California and The Board
2019-08-08 01:33:29 +02:00
# of Regents for the Oklahoma Agricultural and Mechanical College
# (acting for and on behalf of Oklahoma State University)
# All rights reserved.
#
2022-11-27 22:01:20 +01:00
import sys, os
2019-08-08 01:33:29 +02:00
import unittest
from testutils import *
2022-11-27 22:01:20 +01:00
import openram
from openram import debug
from openram import OPTS
2019-08-08 01:33:29 +02:00
2020-10-02 23:54:12 +02:00
2019-08-08 01:33:29 +02:00
class pand3_test(openram_test):
def runTest(self):
config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME"))
2022-11-27 22:01:20 +01:00
openram.init_openram(config_file, is_unit_test=True)
#global verify
from openram import verify
2019-08-08 01:33:29 +02:00
2022-11-27 22:01:20 +01:00
from openram.modules import pand3
2019-08-08 01:33:29 +02:00
debug.info(2, "Testing pand3 gate 4x")
a = pand3(name="pand3x4", size=4)
2019-08-08 01:33:29 +02:00
self.local_check(a)
2022-11-27 22:01:20 +01:00
openram.end_openram()
2019-08-08 01:33:29 +02:00
# instantiate a copdsay of the class to actually run the test
if __name__ == "__main__":
2022-11-27 22:01:20 +01:00
(OPTS, args) = openram.parse_args()
2019-08-08 01:33:29 +02:00
del sys.argv[1:]
header(__file__, OPTS.tech_name)
unittest.main(testRunner=debugTestRunner())