summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsqlthread
diff options
context:
space:
mode:
authorBill King <bking@trolltech.com>2009-10-13 12:00:42 +1000
committerBill King <bking@trolltech.com>2009-10-13 13:21:49 +1000
commit99e7dcf532b1c84aa64a7ab9af9a5fd14fd64033 (patch)
tree62933ef2a7afc448ecf42677536dde8f4ea398a3 /tests/auto/qsqlthread
parentbee70a74465ef837b446ef2d2309a002da5bfe30 (diff)
Fixes autotests now for MS Access via ODBC.
Diffstat (limited to 'tests/auto/qsqlthread')
-rw-r--r--tests/auto/qsqlthread/tst_qsqlthread.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/qsqlthread/tst_qsqlthread.cpp b/tests/auto/qsqlthread/tst_qsqlthread.cpp
index c088a476da..be66e9ec5f 100644
--- a/tests/auto/qsqlthread/tst_qsqlthread.cpp
+++ b/tests/auto/qsqlthread/tst_qsqlthread.cpp
@@ -404,6 +404,8 @@ void tst_QSqlThread::readWriteThreading()
if (db.databaseName() == ":memory:")
QSKIP("does not work with in-memory databases", SkipSingle);
+ else if (tst_Databases::isMSAccess(db))
+ QSKIP("does not work with MS Access databases", SkipSingle);
SqlProducer producer(db);
SqlConsumer consumer(db);