NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

cluster numeric boolean from LV to TS

I've created a sequence which calls a LV VI that outputs a cluster of 3 doubles and a boolean.

 

I've managed to run the sequence and receive results from the numerics but not the boolean, how can I access the boolean result?

 

A Multiple Numeric Test was generated.

 

FredTest

0 Kudos
Message 1 of 5
(3,489 Views)

There's no built-in step type which will test both numeric and boolean values, so you have a couple options:

 

* Store your boolean output to a local and then add a Pass/Fail step immediately following to test it.

* Make a custom step type. This is by far more work and only worth it if you need cleaner reporting and will use it numerous times (or if you're bored, I guess :P)

 

There's probably more methods I'm not thinking of.

0 Kudos
Message 2 of 5
(3,480 Views)

I stored my boolean output to a local and then tried to add a Pass/Fail step immediately following to test it but couldn't anyrecommendations on how to accomplish this? The Seq is requiring a VI

 

THX

0 Kudos
Message 3 of 5
(3,470 Views)

Since you already have a multiple numeric limits test, you could simply convert the Boolean to a 1/0.

0 Kudos
Message 4 of 5
(3,469 Views)

FredTest wrote:

I stored my boolean output to a local and then tried to add a Pass/Fail step immediately following to test it but couldn't anyrecommendations on how to accomplish this? The Seq is requiring a VI

 

THX


What do you mean the sequence is requiring a VI? The VI wrote to the local variable. You changed the Pass/Fail step to 'None' adapter didn't you?

0 Kudos
Message 5 of 5
(3,467 Views)