10-26-2011 07:40 AM
I have a sequence file which tests a number of DUT's. Each DUT has its own SequenceCall within the Sequence File.
I have set up each SequenceCall to create a New Execution and run in Single Pass to create a separate report for each DUT.
My problem is that when the Sequence File executes, it Calls all SequenceCall's and they begin to run in parallel, I want them to run in sequence. I tried using the PreCondition and Evaluate Precondition option of each SequenceCall to make sure the first/previous SequenceCall had completed but this did not work, the Sequence File still called each SequenCall at same time.
10-26-2011 08:19 AM
Why are you spawning a new execution each time?
Next to the Exeuction Options there is a button with a hammer and a wrench on it. When you click on that you get the Sequence Call Advanced Settings. Change the Wait for Execution to Complete: to Before executing next step.
10-26-2011 10:06 AM
New execution because DUT's are to be tested once an Hour for x no of hours.
I tried your suggestion - yes it now works as i want, thank you.