Skip riscv func test because too slow

This commit is contained in:
mrg 2020-10-02 13:33:58 -07:00
parent 1e24b780bb
commit a62b82128c
2 changed files with 7 additions and 5 deletions

View File

@ -15,7 +15,8 @@ from globals import OPTS
from sram_factory import factory
import debug
#@unittest.skip("SKIPPING 50_riscv_func_test")
@unittest.skip("SKIPPING 50_riscv_func_test")
class riscv_func_test(openram_test):
def runTest(self):
@ -34,7 +35,7 @@ class riscv_func_test(openram_test):
from importlib import reload
import characterizer
reload(characterizer)
from characterizer import functional, delay
from characterizer import functional
from sram_config import sram_config
c = sram_config(word_size=32,
write_size=8,

View File

@ -15,6 +15,7 @@ from globals import OPTS
from sram_factory import factory
import debug
#@unittest.skip("SKIPPING 50_riscv_phys_test")
class riscv_phys_test(openram_test):