NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

teststand save execution for later run

I have a requirement to be able to save an execution for a later run.  The sequence of events is:  Run a test, pause, shutdown the system, open the execution later and run from the last state.  Is this possible to do programmatically in TestStand?
0 Kudos
Message 1 of 7
(3,129 Views)

Hi AK,

 

i had the same problem and solved it by logging the Sequence Status (RunState.StepIndex) to a database.

As Primary key i used the UUT Number....

(Do not logg the UUT Number as 1st step, check first, if it already exists)

 

Now you have to read the database entry on the beginning.

Set the StepIndex from the database as a FileGlobal and set it as next step...

 

  RunState.StepGroup = "Main",

  RunState.NextStepIndex = FileGlobals.ABORT_STEP

 

hope, this helps you 😉

 

(sorry if my english is a little bit broken....)

_____________________________________
Givin´ um something to Rock´n´Roll about
0 Kudos
Message 2 of 7
(3,114 Views)
Thanks, I will give it a try.  Did you just use your own database, or did you use an existing one in TestStand to store the step index?  Cheers.
0 Kudos
Message 3 of 7
(3,096 Views)

Hi AK,

 

Sorry for the poor description....

I am working on a documentation in German and English.

 

I used a new access database, the TestStand database logs the enters with an ID as Primary key, not the UUT Serial....

My Database has the UUT Serial number as Primary key and a column "CURRENT_STEP" that contains the StepIndex of the last Step....

 

On the Startup you've got to read the database... If the "CURRENT_STEP" = 0 -> start from the beginning,   if not -> set

 

  RunState.StepGroup = "Main",

  RunState.NextStepIndex = FileGlobals.ABORT_STEP

 

I hope the documentation is finished on Monday, it should help you....

But I can't guarantee, that the English version is free of misspellings.....

But it contains many Screenshots 😉

_____________________________________
Givin´ um something to Rock´n´Roll about
0 Kudos
Message 4 of 7
(3,084 Views)

Your english is fine 🙂

I am trying to do this from within LabVIEW code - I have a UI within a LabVIEW program.

I've tried your suggestion, but run into the problem that I don't have an execution on start up.  After saving the step index to the database, shutting down, then restarting, how do I get an execution so that I can set the NextStepIndex on it?

Thanks for your help.

0 Kudos
Message 5 of 7
(3,056 Views)

Hi,

 

Please give me your email address.

I'll send you the Documentation.

_____________________________________
Givin´ um something to Rock´n´Roll about
0 Kudos
Message 6 of 7
(3,047 Views)

email:   arrakhuo@gmail.com

 

Thanks.

0 Kudos
Message 7 of 7
(3,035 Views)