OpenRAM/compiler/tests/04_pand2_test.py

39 lines
1.0 KiB
Python
Raw Normal View History

2018-11-26 22:45:22 +01:00
#!/usr/bin/env python3
# See LICENSE for licensing information.
#
2019-06-14 17:43:41 +02:00
# Copyright (c) 2016-2019 Regents of the University of California and The Board
# of Regents for the Oklahoma Agricultural and Mechanical College
# (acting for and on behalf of Oklahoma State University)
# All rights reserved.
#
2018-11-26 22:45:22 +01:00
import unittest
from testutils import *
2018-11-26 22:45:22 +01:00
import sys,os
sys.path.append(os.getenv("OPENRAM_HOME"))
2018-11-26 22:45:22 +01:00
import globals
from globals import OPTS
from sram_factory import factory
2018-11-26 22:45:22 +01:00
import debug
class pand2_test(openram_test):
def runTest(self):
globals.init_openram("config_{0}".format(OPTS.tech_name))
2018-11-26 22:45:22 +01:00
global verify
import verify
import pand2
debug.info(2, "Testing pand2 gate 4x")
2019-01-17 01:15:38 +01:00
a = pand2.pand2(name="pand2x4", size=4)
2018-11-26 22:45:22 +01:00
self.local_check(a)
globals.end_openram()
# instantiate a copdsay of the class to actually run the test
if __name__ == "__main__":
(OPTS, args) = globals.parse_args()
del sys.argv[1:]
header(__file__, OPTS.tech_name)
unittest.main(testRunner=debugTestRunner())