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,14 +87,12 @@ 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 (fi.isDir()) {
// If it contains a DATALOG folder, it's a ResMed SD card // If it contains a DATALOG folder, it's a ResMed SD card
QDir datalog(fi.canonicalFilePath() + QDir::separator() + "DATALOG"); QDir datalog(fi.canonicalFilePath() + QDir::separator() + "DATALOG");
if (datalog.exists()) { if (datalog.exists()) {
@ -106,4 +104,3 @@ void iterateTestCards(const QString & root, void (*action)(const QString &))
} }
} }
} }
}