1
0
mirror of https://github.com/openhwgroup/cvw synced 2025-02-11 06:05:49 +00:00
This commit is contained in:
Jordan Carlin 2024-12-19 13:04:42 -08:00
parent 2818bdbaa8
commit 7c297af0eb
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions
bin

View File

@ -50,7 +50,7 @@ def validateArgs(args):
elif (args.tb == "testbench_fp" and args.sim != "questa"): elif (args.tb == "testbench_fp" and args.sim != "questa"):
print("Error: testbench_fp presently only supported by Questa, not VCS or Verilator, because of a touchy testbench") print("Error: testbench_fp presently only supported by Questa, not VCS or Verilator, because of a touchy testbench")
sys.exit(1) sys.exit(1)
elif ("breker" in args.elf or "breker" in args.testsuite) and args.sim != "questa": elif (args.config == "breker" and args.sim != "questa"):
print("Error: Breker tests currently only supported by Questa") print("Error: Breker tests currently only supported by Questa")
sys.exit(1) sys.exit(1)