NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

In a Post step callback, need to look at test Pass/Fail result, numeric meas val

I am coverting an Test Exective application to TestStand 4.0
 
I have post step callbacks that I am looking to modify for use in test stand.
 
I am looking for where the pass/fail result for the step, numerical value measured, and comparison mode.
 
These could be found in Test executive in a cluster named "Test Result"
 
Additionally, I have Post UUT call back that I need modify for that VI I need the information that was in the "UUT Result" Cluster.
 
Thanks in advance for the assistance.
0 Kudos
Message 1 of 4
(3,849 Views)

Hey mike,

That sounds like quite a project you have going.  In TestStand 4.0 the information about the step is stored in Step.Result.whatever.  Check out the TestStand Reference Manual starting on page 4-6.  It tells how all the information for each of the step types are stored. Very informative!  The other section in the TestStand Reference Manual to check out is page 3-14.  This contains the exact order of step execution.  The pass/fail status doesn't get evaluated until the Status Expression executes.  That's in action number 17.  Your post step gets called in action number 15 so you won't know the status when your post step executes.  You can however copy the same code from the status expression and put it as part of your post step to get that if you need it there.

I'm not sure I understand what you mean by this comment: "Additionally, I have Post UUT call back that I need modify for that VI I need the information that was in the "UUT Result" Cluster."  VI's do not have a Post UUT callback.  Only the process model has a Post UUT callback.  Do you need to add a call to that VI in the Post UUT callback?  If so then just add the callback to your client sequence and call the VI in there.  You'll have to define what you mean by "UUT Result" Cluster.  Is that a huge cluster that gets returned by your VI with information about passing and failing? 

Hope this helps some,

jigg
CTA, CLA
testeract.com
~Will work for kudos and/or BBQ~
0 Kudos
Message 2 of 4
(3,833 Views)
Mike,

@mikeg1 wrote:
I am coverting an Test Exective application to TestStand 4.0
 
I have post step callbacks that I am looking to modify for use in test stand.
 
I am looking for where the pass/fail result for the step, numerical value measured, and comparison mode.
 
These could be found in Test executive in a cluster named "Test Result"
 
Additionally, I have Post UUT call back that I need modify for that VI I need the information that was in the "UUT Result" Cluster.
 
Thanks in advance for the assistance.



I've done this with Labwidows/CVI but not Labview.  I used an extensively 'tweaked' verison of the Test Executive 2.0 for some years and have converted To TS4.0 in mid-2007.

I'm not sure if what I've done will be of help to you but I may be able to at least answer some of your questions.

Mark Housel
mhousel@jcmcontech.com

0 Kudos
Message 3 of 4
(3,678 Views)

Hi,

http://digital.ni.com/public.nsf/allkb/F1118263F4599E9986256BE600602D97

This link may help, I understand you are using a very early version of the TestExecutive.

Regards

Ray Farmer

Regards
Ray Farmer
0 Kudos
Message 4 of 4
(3,672 Views)