Update replica bitline test for new parameters. Add small test and a larger test.

This commit is contained in:
Matt Guthaus 2018-02-07 15:15:19 -08:00
parent 1a491f3cd0
commit 2413304f4e
1 changed files with 10 additions and 2 deletions

View File

@ -21,10 +21,18 @@ class replica_bitline_test(openram_test):
import replica_bitline
debug.info(2, "Testing RBL")
a = replica_bitline.replica_bitline(13)
stages=4
rows=13
debug.info(2, "Testing RBL with {0} FO4 stages, {1} rows".format(stages,rows))
a = replica_bitline.replica_bitline(stages,rows)
self.local_check(a)
stages=8
rows=100
debug.info(2, "Testing RBL with {0} FO4 stages, {1} rows".format(stages,rows))
a = replica_bitline.replica_bitline(stages,rows)
self.local_check(a)
OPTS.check_lvsdrc = True
globals.end_openram()