sim/regression-wally: exclude zkn*, zbk* from soc config

This commit is contained in:
Marcus Mellor 2024-03-11 16:49:56 -05:00
parent b6bfe95930
commit ec48e11a54

View File

@ -395,8 +395,8 @@ if (soc):
configs = [] # Delete all configs, just use test64gc
coverStr = '-coverage' # Include coverage report
for test in tests64gc:
if any(s in test for s in ['zfa', 'zfh']):
continue # Skip zfa and zfh tests
if any(s in test for s in ['zfa', 'zfh', 'zbk', 'zkn']):
continue # Skip tests for extensions that aren't in riscv-arch-tests yet
tc = TestCase(
name=test,
variant="rv64gc",