diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2010-11-04 09:20:27 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2010-11-04 09:20:27 (GMT) |
commit | 095f416f806062ab23d82c6907fffac4f862ee3b (patch) | |
tree | abb8d31e4010df303dff5ea7add0aab85c17d3b9 /tests/auto/qfileinfo | |
parent | 4fc2d7f1b14c26d10968c99dd296e056a2beed4d (diff) | |
download | Qt-095f416f806062ab23d82c6907fffac4f862ee3b.zip Qt-095f416f806062ab23d82c6907fffac4f862ee3b.tar.gz Qt-095f416f806062ab23d82c6907fffac4f862ee3b.tar.bz2 |
Fix tst_symbols auto test
Prefix isLikelyToBeNfs with a "q", even though it's only
autotest-exported.
Diffstat (limited to 'tests/auto/qfileinfo')
-rw-r--r-- | tests/auto/qfileinfo/tst_qfileinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qfileinfo/tst_qfileinfo.cpp b/tests/auto/qfileinfo/tst_qfileinfo.cpp index 910ed97..5ec721b 100644 --- a/tests/auto/qfileinfo/tst_qfileinfo.cpp +++ b/tests/auto/qfileinfo/tst_qfileinfo.cpp @@ -70,7 +70,7 @@ # define SRCDIR "" #endif -extern Q_AUTOTEST_EXPORT bool isLikelyToBeNfs(int /* handle */); +extern Q_AUTOTEST_EXPORT bool qIsLikelyToBeNfs(int /* handle */); //TESTED_CLASS= //TESTED_FILES= @@ -942,7 +942,7 @@ void tst_QFileInfo::fileTimes() #endif QVERIFY(file.open(QFile::WriteOnly | QFile::Text)); #ifdef Q_OS_UNIX - if (isLikelyToBeNfs(file.handle())) + if (qIsLikelyToBeNfs(file.handle())) QSKIP("This Test doesn't work on NFS", SkipAll); #endif QTextStream ts(&file); |