NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

I want to show previous test result on uut screen?

Hi.

I'm using Test Stand 2013. I want to show previous uut result on new uut screen. How can i do it? Which variable can i use for it?

0 Kudos
Message 1 of 4
(4,198 Views)

Hello ergin,

 

I'm a little confused by what you're asking. If you "Test UUT's" under execute you can run your test on multiple UUT's and the report at the end will show the results for all devices. Is this what you want?

Jonathan L.
Technical Support Senior Group Manager
National Instruments
0 Kudos
Message 2 of 4
(4,179 Views)

I changed parallel test uut screen. I skipped original dialog and i add message pop up for uut serail number entry. I want to show previous uut result on message popup

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

You could store the previous results using the PostUUT callback (or near that if you are changing the process model directly) and store the result status in a FileGlobal indexed by testsocket index. For example something like:

 

FileGlobals.LastTestSocketStatus[RunState.TestSockets.MyIndex]

 

To make sure the array is big enough you could dynamically size it somewhere using SetNumElements() once you know how many testsockets there are.

 

Hope this helps,

-Doug

0 Kudos
Message 4 of 4
(4,144 Views)