03-02-2009 09:50 AM
Hi,
I am wondering what is the best way to time the execution of a number of steps in my test sequence, so I can report it to a database.
Basically this time will be the boot time of the UUT and may differ from part to part so I want to capture it.
Thanks & Regards,
Don1.
Solved! Go to Solution.
03-03-2009 09:31 AM
Hi Don1,
A very simple way to do it would be to use an expression before and after to capture the time and compare the difference, eg.
locals.startTime = Seconds()
...
steps
...
locals.bootTime = Seconds() - locals.startTime
Charlie Rodway | Principal Software Engineer | Certified TestStand Architect (CTA)
Computer Controlled Solutions Ltd | NI Silver Alliance Partner | GDevCon#1 Sponsor
03-03-2009 10:05 AM
Hi Charlie,
Works like a charm.
Many thanks,
Regards,
Don1.