summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@nokia.com>2010-03-04 14:34:22 (GMT)
committerHarald Fernengel <harald.fernengel@nokia.com>2010-11-02 14:28:11 (GMT)
commit65bad8e2c8894f23f47ff2b7418bcd1fc71d4602 (patch)
treef16410872cb6ce19848c1c161247c3c2be9829fb /src
parent162ff4f01c5700da270f80f3e0decae11f42f6df (diff)
downloadQt-65bad8e2c8894f23f47ff2b7418bcd1fc71d4602.zip
Qt-65bad8e2c8894f23f47ff2b7418bcd1fc71d4602.tar.gz
Qt-65bad8e2c8894f23f47ff2b7418bcd1fc71d4602.tar.bz2
Fixed QFileInfo autotest to skip on NFS.
Exported the isLikelyToBeNfs() function to skip the fileInfo Test on NFS. Otherwise the Test will fail, because the FileSystemTimes are not synchronized.
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qsettings.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/io/qsettings.cpp b/src/corelib/io/qsettings.cpp
index 8ee42e7..e5d182e 100644
--- a/src/corelib/io/qsettings.cpp
+++ b/src/corelib/io/qsettings.cpp
@@ -134,7 +134,7 @@ QT_BEGIN_INCLUDE_NAMESPACE
# include <sys/mount.h>
QT_END_INCLUDE_NAMESPACE
-static bool isLikelyToBeNfs(int handle)
+Q_AUTOTEST_EXPORT bool isLikelyToBeNfs(int handle)
{
struct statfs buf;
if (fstatfs(handle, &buf) != 0)
@@ -160,7 +160,7 @@ QT_END_INCLUDE_NAMESPACE
# define AUTOFSNG_SUPER_MAGIC 0x7d92b1a0
# endif
-static bool isLikelyToBeNfs(int handle)
+Q_AUTOTEST_EXPORT bool isLikelyToBeNfs(int handle)
{
struct statfs buf;
if (fstatfs(handle, &buf) != 0)
@@ -177,7 +177,7 @@ QT_BEGIN_INCLUDE_NAMESPACE
# include <sys/statvfs.h>
QT_END_INCLUDE_NAMESPACE
-static bool isLikelyToBeNfs(int handle)
+Q_AUTOTEST_EXPORT bool isLikelyToBeNfs(int handle)
{
struct statvfs buf;
if (fstatvfs(handle, &buf) != 0)
@@ -189,7 +189,7 @@ static bool isLikelyToBeNfs(int handle)
#endif
}
#else
-static inline bool isLikelyToBeNfs(int /* handle */)
+Q_AUTOTEST_EXPORT inline bool isLikelyToBeNfs(int /* handle */)
{
return true;
}