I have written a Makefile to run tests in questasim. I am using the following commands.
vsim -l transcript -voptargs=+acc test -do $(WAVEDIR)/$(WAVE_FILE)
This helps to open the questa window and simulate the test case. With thin the questa console,I need to run "run -a" so that the complete test execution.
Is there any command which I can add inside my Makefile which will execute the testcase without using the questa console command.
Thanks in advance
Regards S
Simply add a second
-do
option:Side note: be careful when using make with Modelsim or Questa. These tools are not parallel safe. If you try to run several compilations in parallel you will probably corrupt your target libraries and get strange errors.
So, if you use make to also compile, create the libraries, etc. you must guarantee that make will not try to launch in parallel several jobs modifying the same library or the same configuration file (e.g.
modelsim.ini
). With GNU make always add the.NOTPARALLEL:
special target to your Makefiles (there are smarter and more efficient ways to handle this parallel problem with locks but this is out of scope).