OpenRAM/compiler/tests/04_pand2_test.py

41 lines
1.1 KiB
Python
Raw Normal View History

2018-11-26 22:45:22 +01:00
#!/usr/bin/env python3
# See LICENSE for licensing information.
#
2023-01-29 07:56:27 +01:00
# Copyright (c) 2016-2023 Regents of the University of California and The Board
2019-06-14 17:43:41 +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
2018-11-26 22:45:22 +01:00
import unittest
from testutils import *
2022-11-27 22:01:20 +01:00
import openram
from openram import debug
from openram import OPTS
2018-11-26 22:45:22 +01:00
2020-10-02 23:54:12 +02:00
2018-11-26 22:45:22 +01:00
class pand2_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
2018-11-26 22:45:22 +01:00
2022-11-27 22:01:20 +01:00
from openram.modules import pand2
2018-11-26 22:45:22 +01:00
debug.info(2, "Testing pand2 gate 4x")
a = pand2(name="pand2x4", size=4)
2018-11-26 22:45:22 +01:00
self.local_check(a)
2022-11-27 22:01:20 +01:00
openram.end_openram()
2018-11-26 22:45:22 +01: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()
2018-11-26 22:45:22 +01:00
del sys.argv[1:]
header(__file__, OPTS.tech_name)
unittest.main(testRunner=debugTestRunner())