This nugget is for all the VI Analyzer fans out there. If you want a detailed log of everything that happens during an analysis session, add the following line to your LabVIEW INI file:
VIAnalyzerLogging=True
With this INI token present, the following file will be created whenever you perform an analysis: [LabVIEW Data]\VIAnLog.txt. And in this file you will find the following information:
[path to analyzed VI]
[test name],[pass/fail/error],[analysis time in milliseconds]
[test name 2]...
[test name 3]...
[path to analyzed VI 2]
...
This information can be useful if you're interested in which tests are taking the longest to run on your VIs. And if you're having stability problems, i.e. a crash during analysis, this log file will tell you the last VI analyzed (and test run) before the crash. Note that I don't do anything fancy with maintaining old copies of the file...if you perform a second analysis, the log file will be overwritten with the new analysis information.