Don't allow testbench_fp to run under VCS or Verilator because it is defective on those

This commit is contained in:
David Harris 2024-10-10 10:49:59 -07:00
parent bd22b8e0e6
commit 3fdc0e34ce

View File

@ -142,6 +142,11 @@ for d in ["logs", "wkdir", "cov", "ucdb", "fcov", "fcov_ucdb", "fcovrvvi", "fcov
cd = "cd $WALLY/sim/" +args.sim
# check for unsupported sims
if (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")
exit(1)
# per-simulator launch
if (args.sim == "questa"):
if (args.gui) and (args.tb == "testbench"):