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 19fce5033f
commit d0f756c8ad

View File

@ -383,8 +383,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",