I am trying to run a regression from a makefile.My code is
TEST_CASES = my_test2 my_test_with_1_1
test:
$(foreach i,$(TEST_CASES),vsim -novopt -onfinish stop -c -do "do wave.do; run -all; " my_top +UVM_TESTNAME=$(i) +UVM_VERBOSITY=UVM_LOW +UVM_OBJECTION_TRACE)
but when I am running “make test” I am getting an error **
only one -do option can be specified
**.
Why is this and how to solve it??