mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Update Resmed regression tests to follow symlinks.
This commit is contained in:
parent
0c0d616280
commit
191e0f89a8
@ -87,22 +87,19 @@ QString resmedOutputPath(const QString & inpath, int session, const QString & su
|
||||
void iterateTestCards(const QString & root, void (*action)(const QString &))
|
||||
{
|
||||
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);
|
||||
QFileInfoList flist = dir.entryInfoList();
|
||||
|
||||
// Look through each folder in the given root
|
||||
for (int i = 0; i < flist.size(); i++) {
|
||||
QFileInfo fi = flist.at(i);
|
||||
if (fi.isDir()) {
|
||||
// If it contains a DATALOG folder, it's a ResMed SD card
|
||||
QDir datalog(fi.canonicalFilePath() + QDir::separator() + "DATALOG");
|
||||
if (datalog.exists()) {
|
||||
// Confirm that it contains the file that the ResMed loader expects
|
||||
QFileInfo idfile(fi.canonicalFilePath() + QDir::separator() + "Identification.tgt");
|
||||
if (idfile.exists()) {
|
||||
action(fi.canonicalFilePath());
|
||||
}
|
||||
for (auto & fi : flist) {
|
||||
// If it contains a DATALOG folder, it's a ResMed SD card
|
||||
QDir datalog(fi.canonicalFilePath() + QDir::separator() + "DATALOG");
|
||||
if (datalog.exists()) {
|
||||
// Confirm that it contains the file that the ResMed loader expects
|
||||
QFileInfo idfile(fi.canonicalFilePath() + QDir::separator() + "Identification.tgt");
|
||||
if (idfile.exists()) {
|
||||
action(fi.canonicalFilePath());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user