NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Prevent TestStand from closing LabVIEW FrontPanels after execution completes

Our test engineers often debug by opening a VI's front panel from a sequence during edit time, then running that sequence and inspecting the VI's input and output parameters afterwards.

At least that's what they often did in TestStand 2016.

In TestStand 2020, after the sequence completes, the VI front panel automatically closes.

(Running in LabVIEW Development System with a non-reentrant VI)

After reopening the front panel, the values are still there (so the VIs do not get completely unloaded), but reopening gets rather annoying when you have a setup of multiple VIs you want to compare.

 

In TestStand 2016 the VI front panels stayed open during and after execution.

 

Did this behavior change or did we accidentally change a configuration for TestStand 2020?
Is there a way to change this behavior?

 

Thanks.

Stefan

 

Message 1 of 16
(1,873 Views)

I am experiencing the same issue and would like to know how to prevent an asynchronously called .vi from closing when stopping it from running.

0 Kudos
Message 2 of 16
(1,533 Views)

Hi, 

 

If you are referring to this issue 1498966 from TestStand 2020 Bug Fixes - NI, it has been fixed in TestStand 2020 f1 patch. 

Regards, 

Anand Jain

NI

0 Kudos
Message 3 of 16
(1,523 Views)

Now I have installed "TestStand 2020 f1".

 

The problem still exists:

After the TestStand execution stops (=background is getting grey) all the LabVIEW Frontpanel window were closed by TestStand.

0 Kudos
Message 4 of 16
(1,453 Views)

Detail: TestStand 2020 f1 closes only that Vis which were called during the execution.

Not called Vis will stay open.

0 Kudos
Message 5 of 16
(1,446 Views)

Here is a Workaround 🙂

 

Part 1: Put this into 'Cleanup' of all your sequences and add a precondition:

RunState.CallStackDepth == 0

Greil_0-1696592477122.png

 

Part 2: SubVI will do the "re-open".

The small delay is needed to wait until TestStand has finished closing windows.

Greil_1-1696592770491.png

 

Thank You for Kudos.

0 Kudos
Message 6 of 16
(1,438 Views)

I'm seeing something similar and am at a loss.  Figured I'd post here, as I think it's the same topic.

 

I have a LabVIEW application that I'm embedding TestStand into.  I use TestStand to run test sequences and configure the test benches.

issue06.png

 

 

One such sequence creates channels that make LabVIEW calls to a singleton pattern method from a packed library.

 

issue01.png

 

Which calls..

issue02.png

 

The create channel singleton looks like:

issue03.png

 

Everything runs just fine as long as the sequence is running.  I can put a while loop at the end, and let it loop and it's great.  But if I don't force the sequence to keep running, and allow it to finish execution, it appears the notifier I use as a shutdown notifier gets nuked (see comment "5" in the block diagram above). 

issue4.png

 The keep-alive that I run as-sych:

issue05.png

I get this error, when apparently the notifier I create in the first block diagram gets nuked and the "wait on notification" in the 2nd block diagram see's the reference is now invalid.

Again, these are singleton calls from within packed libraries.  

 

How do I keep this from happening?  How do I keep TestStand from Nuking my notifier and data structures running from w/in the larger application?   Anyone seen anything similar?

0 Kudos
Message 7 of 16
(549 Views)

Hi, 

 

Can you clarify what do you mean by - "Everything runs just fine as long as the sequence is running. "? Do you release the reference to the TS execution?

 

Regards, 

Anand Jain

NI

0 Kudos
Message 8 of 16
(523 Views)

The experience we made is that when you create any LabVIEW native references (queue, notifier, TCP handle, ...) from within a parallel execution, as soon as this execution completes, the references become invalid even if you had stored them e.g. in a StationGlobal. No matter how you set the unload options or whether you store and keep a reference to that parallel execution.

 

Stefan

0 Kudos
Message 9 of 16
(503 Views)

No.  I'm the TestStand reference is always fine.  When the sequence stops executing, TestStand seems to be nuking the channels created by that sequence.  

0 Kudos
Message 10 of 16
(466 Views)