Re: Labview and Ni Test Stand Runtime Environment
Hi Michele, during dev time, looks like your code module and the OI are running in the same LabVIEW appliction instance, that's why they communicate. When you run the executable, which creates itts'...
View ArticleRe: Labview and Ni Test Stand Runtime Environment
Hi Oli, I agree with you regarding decoupling. to have the UI and teststand operation in the same scope smells like poorly developed software but in my experience to have section of UI that allow user...
View ArticleRe: Run a Testcase with a Execution object in a thread /asynchronously C#/.NET
Hi Leonard,sorry for the late reply. Thanks for your suggestion. I have a console application to test the behaviour of the testexecution in another thread: // See https://aka.ms/new-console-template...
View ArticleRe: Run a Testcase with a Execution object in a thread /asynchronously C#/.NET
Hi Thomas, Good to see you set up an example. When comparing it with the answer from Solved: Run sequence in .nET by Teststand API - NI Community, I noticed two things: 1. You forgot to acknowledge the...
View ArticleRe: Run a Testcase with a Execution object in a thread /asynchronously C#/.NET
Hi Leonard,your hint to acknowledge the UI Message solved my issue. Thanks for your help! Best regards,Thomas
View ArticleRe: Labview and Ni Test Stand Runtime Environment
Hello, attached lv project labview Project -->3\Source Code\Build Script.lvprojlabview UI --> 3\Source Code\TestExec.llb\Top-Level VI.viTS sequence --> 3\Source Code\sequenze\Sequence...
View ArticleRe: Labview and Ni Test Stand Runtime Environment
Good practices are to create 2 deployements : one for the UI, one for the test system.In both cases I advice to create a workspace and work from there.Then I would avoid specifying a LV project in the...
View ArticleRe: Create a Docker container for TestStand
Hi Oli, I have thought about managing my own internal feeds especially since the latest 2025 versions of TestStand and VeriStand do not work together and have to downgrade to 2023Q3/4 versions. This...
View ArticleRe: Create a Docker container for TestStand
This script is where I was starting from and started asking the questions as to where to find the latest versions / feeds after looking at it. I think it will be easier to modify this script if I...
View ArticleRe: Test Stand sequence merge in Git
I have zipped the .gitignore and .gitattributes files that we use for TestStand /eriStand / LabVIEW / Python ... I hope this helps. The other piece is that you have to go into TestStand and change ALL...
View ArticleBatch Mode Shared Equipment Test Execution
Hello, I have a 4-socket test station, and I am running my test sequence in a batch mode. On the test station, I am using 2 frequency counters for one of the tests, and each is a 2-channel frequency...
View ArticleRe: Batch Mode Shared Equipment Test Execution
Have you taken a look into, how Auto Scheduling steps may help?
View ArticleRe: Batch Mode Shared Equipment Test Execution
You could just use named Locks in TestStand on the VI Steps. If it's socket 2,3 use "Lock2", if it's socket 0,1 use "Lock1". That way that step can run in parallel for 0,1 and 2,3, but not for 1 and 2...
View ArticleRe: Batch Mode Shared Equipment Test Execution
Thanks @ShockHouse. I am not sure how locks, as per your screenshot, worked, as there are no Lock1 or Lock 2 in the main or your screenshot. Also, I would like to execute Sockets 0 and 2 together, and...
View ArticleRe: Batch Mode Shared Equipment Test Execution
"Lock1" and "Lock2" are just string values you can use for your Lock. See my screenshot where if the socket is 0 or 1, I pass in "Lock1", but if its 2,3 I pass in "Lock2". You would just need to alter...
View ArticleRe: Batch Mode Shared Equipment Test Execution
Thanks again, ShockHouse.If you can please share a screenshot(s) of the sequence and conditions/statements, I would appreciate it. I didn't quite understand. I am trying different things on my end as...
View ArticleRe: Batch Mode Shared Equipment Test Execution
I have one solution, using the batch synchronization - parallel and using the following pre-conditions, and adding the same step in the sequence twice. However, I was hoping to find a better...
View ArticleRe: on the fly reporting
Could you explain exactly where you find these settings in order to select or deselect them?
View ArticleRe: Batch Mode Shared Equipment Test Execution
The screenshot in my first comment is all you need. On a TestStand step, you can go to Synchronization, and enable Synchronization at the step level based on a Lock. The Locks are just named strings,...
View ArticleRe: on the fly reporting
This thread referes to an old TS version, reproting has been modified in the meantime. Can you describe, what you are tryng to achieve?
View Article