I've seen speed issues related to OS and processor changes because disk access and processor speed make things happen faster. Timing of signals to the test article gets either faster or slower as a result. Tests that used to pass now fail. Sometimes adding more delay helps. We had one situation where a new OS on an older machine bogged so badly that almost nothing would run. Changing the processor fixed that, but made some program transitions too fast.
That particular program used server calls that dynamically loaded VIs from the disk. The new processor and disk were both faster, but the processor was maybe 5x faster while the disk was only 2x faster. The processor called the disk to write a file, the next call was to print the file using EXCEL. The
call to print arrived at the disk before it finished writing the file. Fixed with a slight delay.