diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-06-15 11:48:27 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-06-15 11:48:27 (GMT) |
commit | dfc44997351a65b44f1c0df0fd03e9614e2e3bba (patch) | |
tree | 7753ed621921de06cff0931cf057063b0295c3b5 /tests/benchmarks | |
parent | 4eaa1e118c3c60c99710ad7218cb6f03f536c9dc (diff) | |
download | Qt-dfc44997351a65b44f1c0df0fd03e9614e2e3bba.zip Qt-dfc44997351a65b44f1c0df0fd03e9614e2e3bba.tar.gz Qt-dfc44997351a65b44f1c0df0fd03e9614e2e3bba.tar.bz2 |
Deactivate the low level POSIX bench on Windows
Diffstat (limited to 'tests/benchmarks')
-rw-r--r-- | tests/benchmarks/qdir/tst_qdir.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/benchmarks/qdir/tst_qdir.cpp b/tests/benchmarks/qdir/tst_qdir.cpp index c95ff96..6405645 100644 --- a/tests/benchmarks/qdir/tst_qdir.cpp +++ b/tests/benchmarks/qdir/tst_qdir.cpp @@ -73,6 +73,7 @@ private slots: } } } +#ifndef Q_OS_WIN void testLowLevel() { QDir testdir(QDir::tempPath() + QLatin1String("/test_speed")); DIR *dir = opendir(qPrintable(testdir.absolutePath())); @@ -90,6 +91,7 @@ private slots: } closedir(dir); } +#endif }; QTEST_MAIN(Test) |