Skip to content

Commit

Permalink
only skip the QFileInfo permissions test when building for symbian OS
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Kearns committed Aug 12, 2009
1 parent ebb0b40 commit e4bb34d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/auto/qfileinfo/tst_qfileinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,9 @@ void tst_QFileInfo::permission()
QFETCH(QString, file);
QFETCH(int, perms);
QFETCH(bool, expected);
QEXPECT_FAIL("data0", "No user based rights in Symbian OS - SOS needs platform security tests instead", Abort);
#ifdef Q_OS_SYMBIAN
QSKIP("No user based rights in Symbian OS - SOS needs platform security tests instead", SkipAll);
#endif
QFileInfo fi(file);
QCOMPARE(fi.permission(QFile::Permissions(perms)), expected);
}
Expand Down

0 comments on commit e4bb34d

Please sign in to comment.