Update Resmed regression tests to follow symlinks.

This commit is contained in:
sawinglogz 2020-04-19 14:25:32 -04:00
parent 0c0d616280
commit 191e0f89a8

View File

@ -87,22 +87,19 @@ QString resmedOutputPath(const QString & inpath, int session, const QString & su
void iterateTestCards(const QString & root, void (*action)(const QString &)) void iterateTestCards(const QString & root, void (*action)(const QString &))
{ {
QDir dir(root); QDir dir(root);
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs);
dir.setSorting(QDir::Name); dir.setSorting(QDir::Name);
QFileInfoList flist = dir.entryInfoList(); QFileInfoList flist = dir.entryInfoList();
// Look through each folder in the given root // Look through each folder in the given root
for (int i = 0; i < flist.size(); i++) { for (auto & fi : flist) {
QFileInfo fi = flist.at(i); // If it contains a DATALOG folder, it's a ResMed SD card
if (fi.isDir()) { QDir datalog(fi.canonicalFilePath() + QDir::separator() + "DATALOG");
// If it contains a DATALOG folder, it's a ResMed SD card if (datalog.exists()) {
QDir datalog(fi.canonicalFilePath() + QDir::separator() + "DATALOG"); // Confirm that it contains the file that the ResMed loader expects
if (datalog.exists()) { QFileInfo idfile(fi.canonicalFilePath() + QDir::separator() + "Identification.tgt");
// Confirm that it contains the file that the ResMed loader expects if (idfile.exists()) {
QFileInfo idfile(fi.canonicalFilePath() + QDir::separator() + "Identification.tgt"); action(fi.canonicalFilePath());
if (idfile.exists()) {
action(fi.canonicalFilePath());
}
} }
} }
} }