Question

I want to be able to specify the file name stem for the log file in a Specman test. I need to hard-code the main *.elog filename so that I don't get variance between tests and confuse the post-processing scripts. Is there a constraint or command line I can pass into Specman?

Was it helpful?

Solution 2

You can control the *.elog filename with switch -log.

OTHER TIPS

You can also use specman command "set log " or use following code.

extend sys
{
     run() is also {
          specman("set log specman.elog");
     };
};
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top