| Author |
Message |
kishore111281
Joined: 19 Feb 2008 Posts: 14
|
21 Feb 2008 7:10 coverage in specman |
|
|
|
Hi i am using specman version 4.3.2, i have written environment and test cases, i have done config set also for coverage , but when i am running my test cases i am not getting *.ecov files , please suggest me where i am doing mistake.
thanks in advance,
Krishna Kishore
|
|
| Back to top |
|
 |
shiv_emf
Joined: 31 Aug 2005 Posts: 638 Helped: 16
|
22 Feb 2008 14:20 coverage in specman |
|
|
|
| i think u r missing something arguments in commandline. im not sure though.. pls chk userguide.
|
|
| Back to top |
|
 |
kishore111281
Joined: 19 Feb 2008 Posts: 14
|
23 Feb 2008 8:29 Re: coverage in specman |
|
|
|
| I didnt get u.. please clarify ..
|
|
| Back to top |
|
 |
zencool
Joined: 03 Mar 2008 Posts: 8
|
06 Mar 2008 13:55 Re: coverage in specman |
|
|
|
Hi,
try this line code .......:
extend sys {
setup() is also {
set_config(cover, mode, default);
};
};
|
|
| Back to top |
|
 |
surisingh
Joined: 14 Jun 2007 Posts: 23 Helped: 1
|
18 Mar 2008 18:07 Re: coverage in specman |
|
|
|
Hi Try the following line of code in your e top file
extend sys
{
setup() is also
{
set_config( cover, mode, on); // Turn ON the coverage
}; // End of setup()
}; // End of extend
|
|
| Back to top |
|
 |