Merge pull request #1457 from jordancarlin/dev
Some checks failed
Lint / Lint (Python 312) (push) Has been cancelled
Lint / Lint (Python 39) (push) Has been cancelled

Fix regression-wally test list conditions
This commit is contained in:
David Harris 2025-06-16 10:18:35 -07:00 committed by GitHub
commit 75a081064e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -514,7 +514,7 @@ def selectTests(args, sims, coverStr):
if args.breker:
addTestsByDir(WALLY+"/tests/breker/work", "breker", "questa", coverStr, configs, brekerMode=1)
# standard tests
if not(args.testfloat or args.ccov or args.fcov or args.fcov_act or args.branch or args.breker):
if not(args.testfloat or args.ccov or args.fcov or args.fcov_act or args.cache or args.branch or args.benchmark or args.breker):
for sim in sims:
if not (args.buildroot and sim == lockstepsim): # skip short buildroot sim if running long one
addTests(tests_buildrootshort, sim, coverStr, configs)