Rename ROM unit tests.

This commit is contained in:
mrg
2023-03-30 11:30:50 -07:00
committed by Jacob Walker
parent 041c738cb2
commit fe65a20431
11 changed files with 11 additions and 4 deletions
@@ -30,7 +30,7 @@ class rom_bank_test(openram_test):
rom_data = test_data,
word_size = 1)
a = factory.create(module_type="rom_base_bank", rom_config=conf)
a = factory.create(module_type="rom_bank", rom_config=conf)
a.sp_write(OPTS.openram_temp + 'simulation_file.sp')
self.local_check(a)
@@ -41,4 +41,4 @@ if __name__ == "__main__":
(OPTS, args) = openram.parse_args()
del sys.argv[1:]
header(__file__, OPTS.tech_name)
unittest.main(testRunner=debugTestRunner())
unittest.main(testRunner=debugTestRunner())
@@ -31,7 +31,7 @@ class rom_bank_test(openram_test):
rom_data = test_data,
word_size = 2)
a = factory.create(module_type="rom_base_bank", rom_config=conf)
a = factory.create(module_type="rom_bank", rom_config=conf)
a.sp_write(OPTS.openram_temp + 'simulation_file.sp')
self.local_check(a)
@@ -42,4 +42,4 @@ if __name__ == "__main__":
(OPTS, args) = openram.parse_args()
del sys.argv[1:]
header(__file__, OPTS.tech_name)
unittest.main(testRunner=debugTestRunner())
unittest.main(testRunner=debugTestRunner())