ASIC Verification: Specman GUI

Friday, February 22, 2008

Specman GUI

If you have used specman GUI to run simulations, you must have encountered this problem. When you run several simulations during the same session, specman doesn’t clear the log file by default so what you get in the end is a concatenation of all log files. It'll occupy more memory.

Now try adding this to your e testbench.

extend global {
setup_test() is also {
specman(”set log off”);
specman(”set log specman.elog”);
};
};


Now everytime you hit the TEST button, specman.elog will show only the last simulation log.

No comments: